(四十一)c#Winform自定義控制項-進度條

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

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


前提

入行已經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

準備工作

前面寫過一個進度條,但是並不是太好,這次用GDI+再重繪一個,不瞭解GDI+的自行百度瞭解下先

(七)c#Winform自定義控制項-進度條

開始

添加一個類,命名UCProcessLine,繼承Control

添加一個枚舉,用以如何顯示值

 1  public enum ValueTextType
 2     {
 3         None,
 4         /// <summary>
 5         /// 百分比
 6         /// </summary>
 7         Percent,
 8         /// <summary>
 9         /// 數值
10         /// </summary>
11         Absolute
12     }

 

添加一些屬性

  1 [Description("值變更事件"), Category("自定義")]
  2         public event EventHandler ValueChanged;
  3         int m_value = 0;
  4         [Description("當前屬性"), Category("自定義")]
  5         public int Value
  6         {
  7             set
  8             {
  9                 if (value > m_maxValue)
 10                     m_value = m_maxValue;
 11                 else if (value < 0)
 12                     m_value = 0;
 13                 else
 14                     m_value = value;
 15                 if (ValueChanged != null)
 16                     ValueChanged(this, null);
 17                 Refresh();
 18             }
 19             get
 20             {
 21                 return m_value;
 22             }
 23         }
 24 
 25         private int m_maxValue = 100;
 26 
 27         [Description("最大值"), Category("自定義")]
 28         public int MaxValue
 29         {
 30             get { return m_maxValue; }
 31             set
 32             {
 33                 if (value < m_value)
 34                     m_maxValue = m_value;
 35                 else
 36                     m_maxValue = value;
 37                 Refresh();
 38             }
 39         }
 40 
 41         Color m_valueColor = Color.FromArgb(73, 119, 232);
 42 
 43         [Description("值進度條顏色"), Category("自定義")]
 44         public Color ValueColor
 45         {
 46             get { return m_valueColor; }
 47             set
 48             {
 49                 m_valueColor = value;
 50                 Refresh();
 51             }
 52         }
 53 
 54         private Color m_valueBGColor = Color.White;
 55 
 56         [Description("值背景色"), Category("自定義")]
 57         public Color ValueBGColor
 58         {
 59             get { return m_valueBGColor; }
 60             set
 61             {
 62                 m_valueBGColor = value;
 63                 Refresh();
 64             }
 65         }
 66 
 67         private Color m_borderColor = Color.FromArgb(192, 192, 192);
 68 
 69         [Description("邊框顏色"), Category("自定義")]
 70         public Color BorderColor
 71         {
 72             get { return m_borderColor; }
 73             set
 74             {
 75                 m_borderColor = value;
 76                 Refresh();
 77             }
 78         }
 79 
 80         [Description("值字體"), Category("自定義")]
 81         public override Font Font
 82         {
 83             get
 84             {
 85                 return base.Font;
 86             }
 87             set
 88             {
 89                 base.Font = value;
 90                 Refresh();
 91             }
 92         }
 93 
 94         [Description("值字體顏色"), Category("自定義")]
 95         public override System.Drawing.Color ForeColor
 96         {
 97             get
 98             {
 99                 return base.ForeColor;
100             }
101             set
102             {
103                 base.ForeColor = value;
104                 Refresh();
105             }
106         }
107         private ValueTextType m_valueTextType = ValueTextType.Percent;
108 
109         [Description("值顯示樣式"), Category("自定義")]
110         public ValueTextType ValueTextType
111         {
112             get { return m_valueTextType; }
113             set
114             {
115                 m_valueTextType = value;
116                 Refresh();
117             }
118         }

重繪

 1  protected override void OnPaint(PaintEventArgs e)
 2         {
 3             Console.WriteLine(DateTime.Now);
 4             base.OnPaint(e);
 5             Graphics g = e.Graphics;
 6             g.SetGDIHigh();
 7 
 8             Brush sb = new SolidBrush(m_valueBGColor);
 9             g.FillRectangle(sb, new Rectangle(base.ClientRectangle.X, base.ClientRectangle.Y, base.ClientRectangle.Width - 3, base.ClientRectangle.Height - 2));
10             GraphicsPath path1 = ControlHelper.CreateRoundedRectanglePath(new Rectangle(base.ClientRectangle.X, base.ClientRectangle.Y + 1, base.ClientRectangle.Width - 3, base.ClientRectangle.Height - 4), 3);
11             g.DrawPath(new Pen(m_borderColor, 1), path1);
12             LinearGradientBrush lgb = new LinearGradientBrush(new Point(0, 0), new Point(0, base.ClientRectangle.Height - 3), m_valueColor, Color.FromArgb(200, m_valueColor.R, m_valueColor.G, m_valueColor.B));
13             g.FillPath(lgb, ControlHelper.CreateRoundedRectanglePath(new Rectangle(0, (base.ClientRectangle.Height - (base.ClientRectangle.Height - 3)) / 2, (base.ClientRectangle.Width - 3) * Value / m_maxValue, base.ClientRectangle.Height - 4), 3));
14             string strValue = string.Empty;
15             if (m_valueTextType == HZH_Controls.Controls.ValueTextType.Percent)
16                 strValue = ((float)Value / (float)m_maxValue).ToString("0%");
17             else if (m_valueTextType == HZH_Controls.Controls.ValueTextType.Absolute)
18                 strValue = Value + "/" + m_maxValue;
19             if (!string.IsNullOrEmpty(strValue))
20             {
21                 System.Drawing.SizeF sizeF = g.MeasureString(strValue, Font);
22                 g.DrawString(strValue, Font, new SolidBrush(ForeColor), new PointF((this.Width - sizeF.Width) / 2, (this.Height - sizeF.Height) / 2 + 1));
23             }
24         }

完整代碼來一份

  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 class UCProcessLine : Control
 14     {
 15         [Description("值變更事件"), Category("自定義")]
 16         public event EventHandler ValueChanged;
 17         int m_value = 0;
 18         [Description("當前屬性"), Category("自定義")]
 19         public int Value
 20         {
 21             set
 22             {
 23                 if (value > m_maxValue)
 24                     m_value = m_maxValue;
 25                 else if (value < 0)
 26                     m_value = 0;
 27                 else
 28                     m_value = value;
 29                 if (ValueChanged != null)
 30                     ValueChanged(this, null);
 31                 Refresh();
 32             }
 33             get
 34             {
 35                 return m_value;
 36             }
 37         }
 38 
 39         private int m_maxValue = 100;
 40 
 41         [Description("最大值"), Category("自定義")]
 42         public int MaxValue
 43         {
 44             get { return m_maxValue; }
 45             set
 46             {
 47                 if (value < m_value)
 48                     m_maxValue = m_value;
 49                 else
 50                     m_maxValue = value;
 51                 Refresh();
 52             }
 53         }
 54 
 55         Color m_valueColor = Color.FromArgb(73, 119, 232);
 56 
 57         [Description("值進度條顏色"), Category("自定義")]
 58         public Color ValueColor
 59         {
 60             get { return m_valueColor; }
 61             set
 62             {
 63                 m_valueColor = value;
 64                 Refresh();
 65             }
 66         }
 67 
 68         private Color m_valueBGColor = Color.White;
 69 
 70         [Description("值背景色"), Category("自定義")]
 71         public Color ValueBGColor
 72         {
 73             get { return m_valueBGColor; }
 74             set
 75             {
 76                 m_valueBGColor = value;
 77                 Refresh();
 78             }
 79         }
 80 
 81         private Color m_borderColor = Color.FromArgb(192, 192, 192);
 82 
 83         [Description("邊框顏色"), Category("自定義")]
 84         public Color BorderColor
 85         {
 86             get { return m_borderColor; }
 87             set
 88             {
 89                 m_borderColor = value;
 90                 Refresh();
 91             }
 92         }
 93 
 94         [Description("值字體"), Category("自定義")]
 95         public override Font Font
 96         {
 97             get
 98             {
 99                 return base.Font;
100             }
101             set
102             {
103                 base.Font = value;
104                 Refresh();
105             }
106         }
107 
108         [Description("值字體顏色"), Category("自定義")]
109         public override System.Drawing.Color ForeColor
110         {
111             get
112             {
113                 return base.ForeColor;
114             }
115             set
116             {
117                 base.ForeColor = value;
118                 Refresh();
119             }
120         }
121         private ValueTextType m_valueTextType = ValueTextType.Percent;
122 
123         [Description("值顯示樣式"), Category("自定義")]
124         public ValueTextType ValueTextType
125         {
126             get { return m_valueTextType; }
127             set
128             {
129                 m_valueTextType = value;
130                 Refresh();
131             }
132         }
133         public UCProcessLine()
134         {
135             Size = new Size(200, 15);
136             ForeColor = Color.FromArgb(255, 77, 59);
137             Font = new Font("Arial Unicode MS", 10);
138             this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
139             this.SetStyle(ControlStyles.DoubleBuffer, true);
140             this.SetStyle(ControlStyles.ResizeRedraw, true);
141             this.SetStyle(ControlStyles.Selectable, true);
142             this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
143             this.SetStyle(ControlStyles.UserPaint, true);
144         }
145 
146         protected override void OnPaint(PaintEventArgs e)
147         {
148             Console.WriteLine(DateTime.Now);
149             base.OnPaint(e);
150             Graphics g = e.Graphics;
151             g.SetGDIHigh();
152 
153             Brush sb = new SolidBrush(m_valueBGColor);
154             g.FillRectangle(sb, new Rectangle(base.ClientRectangle.X, base.ClientRectangle.Y, base.ClientRectangle.Width - 3, base.ClientRectangle.Height - 2));
155             GraphicsPath path1 = ControlHelper.CreateRoundedRectanglePath(new Rectangle(base.ClientRectangle.X, base.ClientRectangle.Y + 1, base.ClientRectangle.Width - 3, base.ClientRectangle.Height - 4), 3);
156             g.DrawPath(new Pen(m_borderColor, 1), path1);
157             LinearGradientBrush lgb = new LinearGradientBrush(new Point(0, 0), new Point(0, base.ClientRectangle.Height - 3), m_valueColor, Color.FromArgb(200, m_valueColor.R, m_valueColor.G, m_valueColor.B));
158             g.FillPath(lgb, ControlHelper.CreateRoundedRectanglePath(new Rectangle(0, (base.ClientRectangle.Height - (base.ClientRectangle.Height - 3)) / 2, (base.ClientRectangle.Width - 3) * Value / m_maxValue, base.ClientRectangle.Height - 4), 3));
159             string strValue = string.Empty;
160             if (m_valueTextType == HZH_Controls.Controls.ValueTextType.Percent)
161                 strValue = ((float)Value / (float)m_maxValue).ToString("0%");
162             else if (m_valueTextType == HZH_Controls.Controls.ValueTextType.Absolute)
163                 strValue = Value + "/" + m_maxValue;
164             if (!string.IsNullOrEmpty(strValue))
165             {
166                 System.Drawing.SizeF sizeF = g.MeasureString(strValue, Font);
167                 g.DrawString(strValue, Font, new SolidBrush(ForeColor), new PointF((this.Width - sizeF.Width) / 2, (this.Height - sizeF.Height) / 2 + 1));
168             }
169         }
170 
171     }
172 
173     public enum ValueTextType
174     {
175         None,
176         /// <summary>
177         /// 百分比
178         /// </summary>
179         Percent,
180         /// <summary>
181         /// 數值
182         /// </summary>
183         Absolute
184     }
185 }
View Code

 

用處及效果

最後的話

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


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

-Advertisement-
Play Games
更多相關文章
  • 一 目標 推薦一款線上將Json對象轉換為Ts類的工具:https://apihelper.jccore.cn/jsontool 可以幫助前端開發人員提高開發效率。 二 背景 Json是一種輕量級的數據交換格式。易於人閱讀和編寫。同時也易於機器解析和生成。所以Json成為了前後端交互使用的主要格式。 ...
  • NET 特性(Attribute) 轉自 "博客園(Fish)" "特性(Attribute)" :是用於在運行時傳遞程式中各種元素(比如類、方法、結構、枚舉、組件等)的行為信息的聲明性標簽。 您可以通過使用特性向程式添加聲明性信息。一個聲明性標簽是通過放置在它所應用的元素前面的方括弧(\[ \]) ...
  • 1.多線程執行方法 2.線程調用 ...
  • 1.首先新建一個空的Asp.net core項目 2.新建一個類 gj.cs 3.添加資料庫上下文類。 4.添加控制器 5.視圖 F5運行程式 (如圖) ...
  • 1.泛形方法:具體實例點擊查看BuilderResultList 2.調用 ...
  • 1.僅適用於規則Excel:表頭和數據一一對應 2.涉及到Excel轉換為集合對象的部分代碼,完整npoi幫助類點擊查看 /// <summary> /// 預設把excel第一個sheet中的數據轉換為對象集合 /// </summary> /// <typeparam name="T"></ty ...
  • 首先需要獲得Azure上App-service 的porfile. 登錄portal 選到app,點擊Get publish pofile 將得到一個 ****.PublishSettings,註意這個文件還不是最後真正用於發佈的配置,還需要做如下操作,得到一個真正的發佈配置, 在VS 中打開項目, ...
  • EasyX 是針對 Visual C++ 的繪圖庫,在初學 C 語言實現圖形和游戲編程、圖形學、分形學等需要繪圖實踐的領域有一定應用。 EasyX 庫在 Visual C++ 中模擬了 Turbo C 引用繪圖庫頭文件的指令 #include ,並針對 Windows 的特點做了相應擴展。 系統支持 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...