(三十六)c#Winform自定義控制項-步驟控制項

来源:https://www.cnblogs.com/bfyx/archive/2019/08/17/11368899.html
-Advertisement-
Play Games

前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...


前提

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

開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control

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

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

目錄

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

準備工作

也沒什麼可準備的了

開始

添加一個用戶控制項,命名UCStep

來點屬性

 1  public event EventHandler IndexChecked;
 2 
 3         private Color m_stepBackColor = Color.FromArgb(100, 100, 100);
 4         /// <summary>
 5         /// 步驟背景色
 6         /// </summary>
 7         [Description("步驟背景色"), Category("自定義")]
 8         public Color StepBackColor
 9         {
10             get { return m_stepBackColor; }
11             set { m_stepBackColor = value; }
12         }
13 
14         private Color m_stepForeColor = Color.FromArgb(255, 85, 51);
15         /// <summary>
16         /// 步驟前景色
17         /// </summary>
18         [Description("步驟前景色"), Category("自定義")]
19         public Color StepForeColor
20         {
21             get { return m_stepForeColor; }
22             set { m_stepForeColor = value; }
23         }
24 
25         private Color m_stepFontColor = Color.White;
26         /// <summary>
27         /// 步驟文字顏色
28         /// </summary>
29         [Description("步驟文字景色"), Category("自定義")]
30         public Color StepFontColor
31         {
32             get { return m_stepFontColor; }
33             set { m_stepFontColor = value; }
34         }
35 
36         private int m_stepWidth = 35;
37         /// <summary>
38         /// 步驟寬度
39         /// </summary>
40         [Description("步驟寬度景色"), Category("自定義")]
41         public int StepWidth
42         {
43             get { return m_stepWidth; }
44             set { m_stepWidth = value; }
45         }
46 
47         private string[] m_steps = new string[] { "step1", "step2", "step3" };
48 
49         [Description("步驟"), Category("自定義")]
50         public string[] Steps
51         {
52             get { return m_steps; }
53             set
54             {
55                 if (m_steps == null || m_steps.Length <= 1)
56                     return;
57                 m_steps = value;
58                 Refresh();
59             }
60         }
61 
62         private int m_stepIndex = 0;
63 
64         [Description("步驟位置"), Category("自定義")]
65         public int StepIndex
66         {
67             get { return m_stepIndex; }
68             set
69             {
70                 if (m_stepIndex >= Steps.Length)
71                     return;
72                 m_stepIndex = value;
73                 Refresh();
74                 if (IndexChecked != null)
75                 {
76                     IndexChecked(this, null);
77                 }
78             }
79         }

重繪

 1  protected override void OnPaint(PaintEventArgs e)
 2         {
 3             base.OnPaint(e);
 4             var g = e.Graphics;
 5             g.SmoothingMode = SmoothingMode.AntiAlias;  //使繪圖質量最高,即消除鋸齒
 6             g.InterpolationMode = InterpolationMode.HighQualityBicubic;
 7             g.CompositingQuality = CompositingQuality.HighQuality;
 8 
 9             if (m_steps != null && m_steps.Length > 0)
10             {
11                 System.Drawing.SizeF sizeFirst = g.MeasureString(m_steps[0], this.Font);
12                 int y = (this.Height - m_stepWidth - 10 - (int)sizeFirst.Height) / 2;
13                 if (y < 0)
14                     y = 0;
15 
16                 int intTxtY = y + m_stepWidth + 10;
17                 int intLeft = 0;
18                 if (sizeFirst.Width > m_stepWidth)
19                 {
20                     intLeft = (int)(sizeFirst.Width - m_stepWidth) / 2 + 1;
21                 }
22 
23                 int intRight = 0;
24                 System.Drawing.SizeF sizeEnd = g.MeasureString(m_steps[m_steps.Length - 1], this.Font);
25                 if (sizeEnd.Width > m_stepWidth)
26                 {
27                     intRight = (int)(sizeEnd.Width - m_stepWidth) / 2 + 1;
28                 }
29 
30                 int intSplitWidth = 20;
31                 intSplitWidth = (this.Width - m_steps.Length - (m_steps.Length * m_stepWidth) - intRight) / (m_steps.Length - 1);
32                 if (intSplitWidth < 20)
33                     intSplitWidth = 20;
34 
35                 for (int i = 0; i < m_steps.Length; i++)
36                 {
37                     #region 畫圓,橫線
38                     g.FillEllipse(new SolidBrush(m_stepBackColor), new Rectangle(new Point(intLeft + i * (m_stepWidth + intSplitWidth), y), new Size(m_stepWidth, m_stepWidth)));
39 
40                     if (m_stepIndex > i)
41                     {
42                         g.FillEllipse(new SolidBrush(m_stepForeColor), new Rectangle(new Point(intLeft + i * (m_stepWidth + intSplitWidth) + 2, y + 2), new Size(m_stepWidth - 4, m_stepWidth - 4)));
43 
44                         if (i != m_steps.Length - 1)
45                         {
46                             if (m_stepIndex == i + 1)
47                             {
48                                 g.DrawLine(new Pen(m_stepForeColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth) - intSplitWidth / 2, y + (m_stepWidth / 2)));
49                                 g.DrawLine(new Pen(m_stepBackColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth + intSplitWidth / 2, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth), y + (m_stepWidth / 2)));
50                             }
51                             else
52                             {
53                                 g.DrawLine(new Pen(m_stepForeColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth), y + (m_stepWidth / 2)));
54                             }
55                         }
56                     }
57                     else
58                     {
59                         if (i != m_steps.Length - 1)
60                         {
61                             g.DrawLine(new Pen(m_stepBackColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth), y + (m_stepWidth / 2)));
62                         }
63                     }
64 
65                     System.Drawing.SizeF _numSize = g.MeasureString((i + 1).ToString(), this.Font);
66                     g.DrawString((i + 1).ToString(), Font, new SolidBrush(m_stepFontColor), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + (m_stepWidth - (int)_numSize.Width) / 2 + 1, y + (m_stepWidth - (int)_numSize.Height) / 2 + 1));
67                     #endregion
68 
69                     System.Drawing.SizeF sizeTxt = g.MeasureString(m_steps[i], this.Font);
70                     g.DrawString(m_steps[i], Font, new SolidBrush(m_stepIndex > i ? m_stepForeColor : m_stepBackColor), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + (m_stepWidth - (int)sizeTxt.Width) / 2 + 1, intTxtY));
71                 }
72             }
73 
74         }

全部代碼

  1 using System;
  2 using System.Collections.Generic;
  3 using System.ComponentModel;
  4 using System.Drawing;
  5 using System.Data;
  6 using System.Linq;
  7 using System.Text;
  8 using System.Windows.Forms;
  9 using System.Drawing.Drawing2D;
 10 
 11 namespace HZH_Controls.Controls
 12 {
 13     public partial class UCStep : UserControl
 14     {
 15 
 16         [Description("步驟更改事件"), Category("自定義")]
 17         public event EventHandler IndexChecked;
 18 
 19         private Color m_stepBackColor = Color.FromArgb(100, 100, 100);
 20         /// <summary>
 21         /// 步驟背景色
 22         /// </summary>
 23         [Description("步驟背景色"), Category("自定義")]
 24         public Color StepBackColor
 25         {
 26             get { return m_stepBackColor; }
 27             set { m_stepBackColor = value; }
 28         }
 29 
 30         private Color m_stepForeColor = Color.FromArgb(255, 85, 51);
 31         /// <summary>
 32         /// 步驟前景色
 33         /// </summary>
 34         [Description("步驟前景色"), Category("自定義")]
 35         public Color StepForeColor
 36         {
 37             get { return m_stepForeColor; }
 38             set { m_stepForeColor = value; }
 39         }
 40 
 41         private Color m_stepFontColor = Color.White;
 42         /// <summary>
 43         /// 步驟文字顏色
 44         /// </summary>
 45         [Description("步驟文字景色"), Category("自定義")]
 46         public Color StepFontColor
 47         {
 48             get { return m_stepFontColor; }
 49             set { m_stepFontColor = value; }
 50         }
 51 
 52         private int m_stepWidth = 35;
 53         /// <summary>
 54         /// 步驟寬度
 55         /// </summary>
 56         [Description("步驟寬度景色"), Category("自定義")]
 57         public int StepWidth
 58         {
 59             get { return m_stepWidth; }
 60             set { m_stepWidth = value; }
 61         }
 62 
 63         private string[] m_steps = new string[] { "step1", "step2", "step3" };
 64 
 65         [Description("步驟"), Category("自定義")]
 66         public string[] Steps
 67         {
 68             get { return m_steps; }
 69             set
 70             {
 71                 if (m_steps == null || m_steps.Length <= 1)
 72                     return;
 73                 m_steps = value;
 74                 Refresh();
 75             }
 76         }
 77 
 78         private int m_stepIndex = 0;
 79 
 80         [Description("步驟位置"), Category("自定義")]
 81         public int StepIndex
 82         {
 83             get { return m_stepIndex; }
 84             set
 85             {
 86                 if (m_stepIndex >= Steps.Length)
 87                     return;
 88                 m_stepIndex = value;
 89                 Refresh();
 90                 if (IndexChecked != null)
 91                 {
 92                     IndexChecked(this, null);
 93                 }
 94             }
 95         }
 96 
 97         public UCStep()
 98         {
 99             InitializeComponent();
100             this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
101             this.SetStyle(ControlStyles.DoubleBuffer, true);
102             this.SetStyle(ControlStyles.ResizeRedraw, true);
103             this.SetStyle(ControlStyles.Selectable, true);
104             this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
105             this.SetStyle(ControlStyles.UserPaint, true);
106         }
107 
108         protected override void OnPaint(PaintEventArgs e)
109         {
110             base.OnPaint(e);
111             var g = e.Graphics;
112             g.SmoothingMode = SmoothingMode.AntiAlias;  //使繪圖質量最高,即消除鋸齒
113             g.InterpolationMode = InterpolationMode.HighQualityBicubic;
114             g.CompositingQuality = CompositingQuality.HighQuality;
115 
116             if (m_steps != null && m_steps.Length > 0)
117             {
118                 System.Drawing.SizeF sizeFirst = g.MeasureString(m_steps[0], this.Font);
119                 int y = (this.Height - m_stepWidth - 10 - (int)sizeFirst.Height) / 2;
120                 if (y < 0)
121                     y = 0;
122 
123                 int intTxtY = y + m_stepWidth + 10;
124                 int intLeft = 0;
125                 if (sizeFirst.Width > m_stepWidth)
126                 {
127                     intLeft = (int)(sizeFirst.Width - m_stepWidth) / 2 + 1;
128                 }
129 
130                 int intRight = 0;
131                 System.Drawing.SizeF sizeEnd = g.MeasureString(m_steps[m_steps.Length - 1], this.Font);
132                 if (sizeEnd.Width > m_stepWidth)
133                 {
134                     intRight = (int)(sizeEnd.Width - m_stepWidth) / 2 + 1;
135                 }
136 
137                 int intSplitWidth = 20;
138                 intSplitWidth = (this.Width - m_steps.Length - (m_steps.Length * m_stepWidth) - intRight) / (m_steps.Length - 1);
139                 if (intSplitWidth < 20)
140                     intSplitWidth = 20;
141 
142                 for (int i = 0; i < m_steps.Length; i++)
143                 {
144                     #region 畫圓,橫線
145                     g.FillEllipse(new SolidBrush(m_stepBackColor), new Rectangle(new Point(intLeft + i * (m_stepWidth + intSplitWidth), y), new Size(m_stepWidth, m_stepWidth)));
146 
147                     if (m_stepIndex > i)
148                     {
149                         g.FillEllipse(new SolidBrush(m_stepForeColor), new Rectangle(new Point(intLeft + i * (m_stepWidth + intSplitWidth) + 2, y + 2), new Size(m_stepWidth - 4, m_stepWidth - 4)));
150 
151                         if (i != m_steps.Length - 1)
152                         {
153                             if (m_stepIndex == i + 1)
154                             {
155                                 g.DrawLine(new Pen(m_stepForeColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth) - intSplitWidth / 2, y + (m_stepWidth / 2)));
156                                 g.DrawLine(new Pen(m_stepBackColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth + intSplitWidth / 2, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth), y + (m_stepWidth / 2)));
157                             }
158                             else
159                             {
160                                 g.DrawLine(new Pen(m_stepForeColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth), y + (m_stepWidth / 2)));
161                             }
162                         }
163                     }
164                     else
165                     {
166                         if (i != m_steps.Length - 1)
167                         {
168                             g.DrawLine(new Pen(m_stepBackColor, 2), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + m_stepWidth, y + (m_stepWidth / 2)), new Point((i + 1) * (m_stepWidth + intSplitWidth), y + (m_stepWidth / 2)));
169                         }
170                     }
171 
172                     System.Drawing.SizeF _numSize = g.MeasureString((i + 1).ToString(), this.Font);
173                     g.DrawString((i + 1).ToString(), Font, new SolidBrush(m_stepFontColor), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + (m_stepWidth - (int)_numSize.Width) / 2 + 1, y + (m_stepWidth - (int)_numSize.Height) / 2 + 1));
174                     #endregion
175 
176                     System.Drawing.SizeF sizeTxt = g.MeasureString(m_steps[i], this.Font);
177                     g.DrawString(m_steps[i], Font, new SolidBrush(m_stepIndex > i ? m_stepForeColor : m_stepBackColor), new Point(intLeft + i * (m_stepWidth + intSplitWidth) + (m_stepWidth - (int)sizeTxt.Width) / 2 + 1, intTxtY));
178                 }
179             }
180 
181         }
182     }
183 }
View Code
 1 namespace HZH_Controls.Controls
 2 {
 3     partial class UCStep
 4     {
 5         /// <summary> 
 6         /// 必需的設計器變數。
 7         /// </summary>
 8         private System.ComponentModel.IContainer components = null;
 9 
10         /// <summary> 
11         /// 清理所有正在使用的資源。
12         /// </summary>
13         /// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
14         protected override void Dispose(bool disposing)
15         {
16             if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             base.Dispose(disposing);
21         }
22 
23         #region 組件設計器生成的代碼
24 
25         /// <summary> 
26         /// 設計器支持所需的方法 - 不要
27         /// 使用代碼編輯器修改此方法的內容。
28         /// </summary>
29         private void InitializeComponent()
30         {
31             this.SuspendLayout();
32             // 
33             // UCStep
34             // 
35             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
36             this.BackColor = System.Drawing.Color.Transparent;
37             this.Name = "UCStep";
38             this.Size = new System.Drawing.Size(239, 80);
39             this.ResumeLayout(false);
40 
41         }
42 
43         #endregion
44     }
45 }
View Code

用處及效果

最後的

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

-Advertisement-
Play Games
更多相關文章
  • python中如何調用函數交換兩個變數的值 所有代碼來在python3.7.1版本實現 以下實例通過用戶輸入兩個變數,並相互交換: 方法一: def swap(a,b): # 創建臨時變數,並交換 temp = a a = b b = temp print(a,b) 以上實例中,我們創建了臨時變數 ...
  • 1、類屬性與實例屬性 類屬性就相當與全局變數,實例對象共有的屬性,實例對象的屬性為實例對象自己私有。 類屬性就是類對象(Tool)所擁有的屬性,它被所有類對象的實例對象(實例方法)所共有,在記憶體中只存在一個副本,這個和C++中類的靜態成員變數有點類似。對於公有的類屬性,在類外可以通過類對象和實例對象 ...
  • 本章主要和大家分享下我們的ASP.NET Core Web 應用程式在開發期間是如何部署到我們的IIS自定義主機功能變數名稱並附加到進程進行調試的。 ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...
  • 之前在使用 Cef (可在 Winform 或 WPF 程式中嵌入 Chrome 內核的網頁瀏覽器的組件)時,使用過在 C# 代碼中調用網頁 JS 的功能,以為是 Cef 獨有的,最近工作中得知,原來 Winform 自帶的瀏覽器控制項 WebBrowser 中也有這個功能,那麼我們就來看看吧。 ...
  • https://www.cnblogs.com/PurpleTide/archive/2010/11/25/1887506.html CLR via C# 讀書筆記 2-3 Cache Lines and False Sharing(高速緩衝區和錯誤共用???)關於CPU中緩存行的問題。 volat ...
  • 1、要在一般處理程式中獲取其他頁面的session值,需要引用名空間: using System.Web.SessionState; 2、然後繼承一個介面:IRequiresSessionState IRequiresSessionState 使用: context.Session["key"]; ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...