(八十)c#Winform自定義控制項-分割線標簽

来源:https://www.cnblogs.com/bfyx/archive/2019/10/09/11640479.html
-Advertisement-
Play Games

前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 GitHub:https://github.com/kwwwvagaa/NetWinformControl 碼雲:https://gitee.com/kwwwvagaa/net_winform_custom_contr ...


前提

入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。

GitHub:https://github.com/kwwwvagaa/NetWinformControl

碼雲:https://gitee.com/kwwwvagaa/net_winform_custom_control.git

如果覺得寫的還行,請點個 star 支持一下吧

歡迎前來交流探討: 企鵝群568015492 企鵝群568015492

來都來了,點個【推薦】再走吧,謝謝

NuGet

Install-Package HZH_Controls

目錄

https://www.cnblogs.com/bfyx/p/11364884.html

用處及效果

準備工作

這個比較簡單,對label擴展,重繪劃線即可

開始

添加一個類UCSplitLabel ,繼承 Label

代碼比較少

  1 // ***********************************************************************
  2 // Assembly         : HZH_Controls
  3 // Created          : 2019-10-09
  4 //
  5 // ***********************************************************************
  6 // <copyright file="UCSplitLabel.cs">
  7 //     Copyright by Huang Zhenghui(黃正輝) All, QQ group:568015492 QQ:623128629 Email:[email protected]
  8 // </copyright>
  9 //
 10 // Blog: https://www.cnblogs.com/bfyx
 11 // GitHub:https://github.com/kwwwvagaa/NetWinformControl
 12 // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
 13 //
 14 // If you use this code, please keep this note.
 15 // ***********************************************************************
 16 using System;
 17 using System.Collections.Generic;
 18 using System.Linq;
 19 using System.Text;
 20 using System.Windows.Forms;
 21 using System.Drawing;
 22 using System.ComponentModel;
 23 
 24 namespace HZH_Controls.Controls
 25 {
 26     /// <summary>
 27     /// Class UCSplitLabel.
 28     /// Implements the <see cref="System.Windows.Forms.Label" />
 29     /// </summary>
 30     /// <seealso cref="System.Windows.Forms.Label" />
 31     public class UCSplitLabel : Label
 32     {
 33         /// <summary>
 34         /// Gets or sets the text.
 35         /// </summary>
 36         /// <value>The text.</value>
 37         [Localizable(true)]
 38         public override string Text
 39         {
 40             get
 41             {
 42                 return base.Text;
 43             }
 44             set
 45             {
 46                 base.Text = value;
 47                 ResetMaxSize();
 48             }
 49         }
 50         /// <summary>
 51         /// 獲取或設置控制項顯示的文字的字體。
 52         /// </summary>
 53         /// <value>The font.</value>
 54         /// <PermissionSet>
 55         ///   <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
 56         ///   <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
 57         ///   <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
 58         ///   <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
 59         /// </PermissionSet>
 60         [Localizable(true)]
 61         public override Font Font
 62         {
 63             get
 64             {
 65                 return base.Font;
 66             }
 67             set
 68             {
 69                 base.Font = value;
 70                 ResetMaxSize();
 71             }
 72         }
 73         /// <summary>
 74         /// 獲取或設置大小,該大小是 <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> 可以指定的下限。
 75         /// </summary>
 76         /// <value>The minimum size.</value>
 77         [Localizable(true)]
 78         public override Size MinimumSize
 79         {
 80             get
 81             {
 82                 return base.MinimumSize;
 83             }
 84             set
 85             {
 86                 base.MinimumSize = value;
 87                 ResetMaxSize();
 88             }
 89         }
 90 
 91 
 92         /// <summary>
 93         /// 獲取或設置大小,該大小是 <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> 可以指定的上限。
 94         /// </summary>
 95         /// <value>The maximum size.</value>
 96         [Localizable(true)]
 97         public override Size MaximumSize
 98         {
 99             get
100             {
101                 return base.MaximumSize;
102             }
103             set
104             {
105                 base.MaximumSize = value;
106                 ResetMaxSize();
107             }
108         }
109         /// <summary>
110         /// 獲取或設置一個值,該值指示是否自動調整控制項的大小以完整顯示其內容。
111         /// </summary>
112         /// <value><c>true</c> if [automatic size]; otherwise, <c>false</c>.</value>
113         /// <PermissionSet>
114         ///   <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
115         ///   <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
116         ///   <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
117         ///   <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
118         /// </PermissionSet>
119         [EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
120         public override bool AutoSize
121         {
122             get
123             {
124                 return base.AutoSize;
125             }
126             set
127             {
128                 base.AutoSize = value;
129             }
130         }
131 
132 
133         /// <summary>
134         /// The line color
135         /// </summary>
136         private Color lineColor = LineColors.Light;
137 
138         /// <summary>
139         /// Gets or sets the color of the line.
140         /// </summary>
141         /// <value>The color of the line.</value>
142         public Color LineColor
143         {
144             get { return lineColor; }
145             set
146             {
147                 lineColor = value;
148                 Invalidate();
149             }
150         }
151 
152         /// <summary>
153         /// Resets the maximum size.
154         /// </summary>
155         private void ResetMaxSize()
156         {
157             using (var g = this.CreateGraphics())
158             {
159                 var _width = Width;
160                 var size = g.MeasureString(string.IsNullOrEmpty(Text) ? "A" : Text, Font);
161                 if (MinimumSize.Height != (int)size.Height)
162                     MinimumSize = new Size(base.MinimumSize.Width, (int)size.Height);
163                 if (MaximumSize.Height != (int)size.Height)
164                     MaximumSize = new Size(base.MaximumSize.Width, (int)size.Height);
165                 this.Width = _width;
166             }
167         }
168         /// <summary>
169         /// Initializes a new instance of the <see cref="UCSplitLabel"/> class.
170         /// </summary>
171         public UCSplitLabel()
172             : base()
173         {
174             if (ControlHelper.IsDesignMode())
175             {
176                 Text = "分割線";
177                 Font = new Font("微軟雅黑", 8f);
178             }
179             this.AutoSize = false;
180             Padding = new Padding(20, 0, 0, 0);
181             MinimumSize = new System.Drawing.Size(150, 10);
182             PaddingChanged += UCSplitLabel_PaddingChanged;
183             this.Width = 200;
184         }
185 
186         /// <summary>
187         /// Handles the PaddingChanged event of the UCSplitLabel control.
188         /// </summary>
189         /// <param name="sender">The source of the event.</param>
190         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
191         void UCSplitLabel_PaddingChanged(object sender, EventArgs e)
192         {
193             if (Padding.Left < 20)
194             {
195                 Padding = new Padding(20, Padding.Top, Padding.Right, Padding.Bottom);
196             }
197         }
198 
199         /// <summary>
200         /// Handles the <see cref="E:Paint" /> event.
201         /// </summary>
202         /// <param name="e">包含事件數據的 <see cref="T:System.Windows.Forms.PaintEventArgs" /></param>
203         protected override void OnPaint(PaintEventArgs e)
204         {
205             base.OnPaint(e);
206             var g = e.Graphics;
207             g.SetGDIHigh();
208 
209             var size = g.MeasureString(Text, Font);
210             g.DrawLine(new Pen(new SolidBrush(lineColor)), new PointF(1, Padding.Top + (this.Height - Padding.Top - Padding.Bottom) / 2), new PointF(Padding.Left - 2, Padding.Top + (this.Height - Padding.Top - Padding.Bottom) / 2));
211             g.DrawLine(new Pen(new SolidBrush(lineColor)), new PointF(Padding.Left + size.Width + 1, Padding.Top + (this.Height - Padding.Top - Padding.Bottom) / 2), new PointF(Width - Padding.Right, Padding.Top + (this.Height - Padding.Top - Padding.Bottom) / 2));
212 
213         }
214     }
215 }

 

最後的話

如果你喜歡的話,請到 https://gitee.com/kwwwvagaa/net_winform_custom_control 點個星星吧


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...