(七十七)c#Winform自定義控制項-採樣控制項

来源:https://www.cnblogs.com/bfyx/archive/2019/09/28/11603213.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

用處及效果

註意觀察各個控制項交疊的地方,是不是發現他們沒有遮擋?這就是這個控制項的妙處了。

準備工作

先說明一下這個控制項的作用,很多時候我們需要一個圖片類型的控制項,但是有需要密集的放在一起,如果單純的設置背景圖或image的話  交疊在一起的部分就會存在遮擋現象,所有就有了這個控制項。

該控制項可以根據設置的採樣圖片來裁剪有用的繪圖區域,這樣的好處就是在交疊的時候,無用區域不會遮擋。

這個用GDI+畫的,另外也用到了一點三角函數,不明白的話 可以先百度下

開始

添加一個類UCSampling ,繼承UserControl

添加屬性

 1   /// <summary>
 2         /// The sampling imag
 3         /// </summary>
 4         private Bitmap samplingImag = null;
 5         /// <summary>
 6         /// Gets or sets the sampling imag.
 7         /// </summary>
 8         /// <value>The sampling imag.</value>
 9         [Browsable(true), Category("自定義屬性"), Description("採樣圖片"), Localizable(true)]
10         public Bitmap SamplingImag
11         {
12             get { return samplingImag; }
13             set
14             {
15                 samplingImag = value;
16                 ResetBorderPath();
17                 Invalidate();
18             }
19         }
20 
21         /// <summary>
22         /// The transparent
23         /// </summary>
24         private Color? transparent = null;
25 
26         /// <summary>
27         /// Gets or sets the transparent.
28         /// </summary>
29         /// <value>The transparent.</value>
30         [Browsable(true), Category("自定義屬性"), Description("透明色,如果為空,則使用0,0坐標處的顏色"), Localizable(true)]
31         public Color? Transparent
32         {
33             get { return transparent; }
34             set
35             {
36                 transparent = value;
37                 ResetBorderPath();
38                 Invalidate();
39             }
40         }
41 
42         /// <summary>
43         /// The alpha
44         /// </summary>
45         private int alpha = 50;
46 
47         /// <summary>
48         /// Gets or sets the alpha.
49         /// </summary>
50         /// <value>The alpha.</value>
51         [Browsable(true), Category("自定義屬性"), Description("當作透明色的透明度,小於此透明度的顏色將被認定為透明,0-255"), Localizable(true)]
52         public int Alpha
53         {
54             get { return alpha; }
55             set
56             {
57                 if (value < 0 || value > 255)
58                     return;
59                 alpha = value;
60                 ResetBorderPath();
61                 Invalidate();
62             }
63         }
64 
65         /// <summary>
66         /// The color threshold
67         /// </summary>
68         private int colorThreshold = 10;
69 
70         /// <summary>
71         /// Gets or sets the color threshold.
72         /// </summary>
73         /// <value>The color threshold.</value>
74         [Browsable(true), Category("自定義屬性"), Description("透明色顏色閥值"), Localizable(true)]
75         public int ColorThreshold
76         {
77             get { return colorThreshold; }
78             set
79             {
80                 colorThreshold = value;
81                 ResetBorderPath();
82                 Invalidate();
83             }
84         }
85 
86         /// <summary>
87         /// The bit cache
88         /// </summary>
89         private Bitmap _bitCache;

在大小改變或圖片改變時重新計算邊界

 1  /// <summary>
 2         /// The m border path
 3         /// </summary>
 4         GraphicsPath m_borderPath = new GraphicsPath();
 5 
 6         /// <summary>
 7         /// Handles the SizeChanged event of the UCSampling control.
 8         /// </summary>
 9         /// <param name="sender">The source of the event.</param>
10         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
11         void UCSampling_SizeChanged(object sender, EventArgs e)
12         {
13             ResetBorderPath();
14         }
15 
16         /// <summary>
17         /// Resets the border path.
18         /// </summary>
19         private void ResetBorderPath()
20         {
21             if (samplingImag == null)
22             {
23                 m_borderPath = this.ClientRectangle.CreateRoundedRectanglePath(5);
24             }
25             else
26             {
27                 var bit = new Bitmap(this.ClientRectangle.Width, this.ClientRectangle.Height);
28                 using (var bitg = Graphics.FromImage(bit))
29                 {
30                     bitg.DrawImage(samplingImag, this.ClientRectangle, 0, 0, samplingImag.Width, samplingImag.Height, GraphicsUnit.Pixel);
31                 }
32                 _bitCache = bit;
33                 m_borderPath = new GraphicsPath();
34                 List<PointF> lstPoints = GetBorderPoints(bit, transparent ?? samplingImag.GetPixel(0, 0));
35                 m_borderPath.AddLines(lstPoints.ToArray());
36                 m_borderPath.CloseAllFigures();
37             }
38         }
39 
40         /// <summary>
41         /// Gets the border points.
42         /// </summary>
43         /// <param name="bit">The bit.</param>
44         /// <param name="transparent">The transparent.</param>
45         /// <returns>List&lt;PointF&gt;.</returns>
46         private List<PointF> GetBorderPoints(Bitmap bit, Color transparent)
47         {
48             float diameter = (float)Math.Sqrt(bit.Width * bit.Width + bit.Height * bit.Height);
49             int intSplit = 0;
50             intSplit = (int)(7 - (diameter - 200) / 100);
51             if (intSplit < 1)
52                 intSplit = 1;
53             List<PointF> lstPoint = new List<PointF>();
54             for (int i = 0; i < 360; i += intSplit)
55             {
56                 for (int j = (int)diameter / 2; j > 5; j--)
57                 {
58                     Point p = GetPointByAngle(i, j, new PointF(bit.Width / 2, bit.Height / 2));
59                     if (p.X < 0 || p.Y < 0 || p.X >= bit.Width || p.Y >= bit.Height)
60                         continue;
61                     Color _color = bit.GetPixel(p.X, p.Y);
62                     if (!(((int)_color.A) <= alpha || IsLikeColor(_color, transparent)))
63                     {
64                         if (!lstPoint.Contains(p))
65                         {
66                             lstPoint.Add(p);
67                         }
68                         break;
69                     }
70                 }
71             }
72             return lstPoint;
73         }
74 
75         /// <summary>
76         /// Determines whether [is like color] [the specified color1].
77         /// </summary>
78         /// <param name="color1">The color1.</param>
79         /// <param name="color2">The color2.</param>
80         /// <returns><c>true</c> if [is like color] [the specified color1]; otherwise, <c>false</c>.</returns>
81         private bool IsLikeColor(Color color1, Color color2)
82         {
83             var cv = Math.Sqrt(Math.Pow((color1.R - color2.R), 2) + Math.Pow((color1.G - color2.G), 2) + Math.Pow((color1.B - color2.B), 2));
84             if (cv <= colorThreshold)
85                 return true;
86             else
87                 return false;
88         }
 1  #region 根據角度得到坐標    English:Get coordinates from angles
 2         /// <summary>
 3         /// 功能描述:根據角度得到坐標    English:Get coordinates from angles
 4         /// 作  者:HZH
 5         /// 創建日期:2019-09-28 11:56:25
 6         /// 任務編號:POS
 7         /// </summary>
 8         /// <param name="angle">angle</param>
 9         /// <param name="radius">radius</param>
10         /// <param name="origin">origin</param>
11         /// <returns>返回值</returns>
12         private Point GetPointByAngle(float angle, float radius, PointF origin)
13         {
14             float y = origin.Y + (float)Math.Sin(Math.PI * (angle / 180.00F)) * radius;
15             float x = origin.X + (float)Math.Cos(Math.PI * (angle / 180.00F)) * radius;
16             return new Point((int)x, (int)y);
17         }
18         #endregion

取邊界的思路如下:

1,以控制項中心為原點,按照一定的角度順時針依次進行旋轉,

2、每次旋轉後,按照此角度從外向內,找到第一個不是透明的點記錄下來,這就是外邊界點

這個取邊界演算法感覺並不是太好,如果哪位小伙伴有更好的演算法,希望可以探討一下

重繪

 1   protected override void OnPaint(PaintEventArgs e)
 2         {
 3             base.OnPaint(e);
 4             e.Graphics.SetGDIHigh();
 5 
 6             this.Region = new System.Drawing.Region(m_borderPath);
 7            
 8             if (_bitCache != null)
 9                 e.Graphics.DrawImage(_bitCache, 0, 0);
10            
11         }

 

最後的話

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


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

-Advertisement-
Play Games
更多相關文章
  • [ TOC ] 0. 前言 自上一篇文章《用python怎麼telnet到網路設備》,簡單使用了telnetlib庫給大家演示了下,但是,現實環境中仍不建議去使用telnet。 SSH(Secure Shell)協議也是屬於TCP/IP協議族裡的一種,埠號22,可以代替telnet來遠程管理的一種 ...
  • 簡介 nginx是一款輕量級的web伺服器,它是由俄羅斯的程式設計師伊戈爾·西索夫所開發。 nginx相比於Tomcat性能十分優秀,能夠支撐5w的併發連接(而Tomcat只能支撐200-400),並且nginx對CPU和記憶體的消耗十分的低,運行十分穩定。 nginx的作用非常多,但我們通常把它作為 ...
  • 基本數據類型 java 是強類型語言,在 java 中存儲的數據都是有類型的,而且必須在編譯時就確定其類型。 基本數據類型變數存儲的是數據本身,而引用類型變數存的是數據的空間地址。 基本類型轉換 自動類型轉換 把一個表數範圍小的數值或變數直接賦給另一個表數範圍大的變數時,系統將會進行自動類型轉換,否 ...
  • 一,不使用藍圖,自己分文件 目錄結構 app.py init.py user.py order.py 註意點:只有是包的時候才能from.然後import 相對路徑進行導入 缺點 容易發生迴圈導入問題 二.使用藍圖之中小型系統 "詳見代碼點擊可以下載" 目錄結構: __init_.py manage ...
  • 知識點 1. 初始化 :每一個flask程式都必須創建一個程式實例,遵循WSGI(Web Server Gateway interface)協議,把請求 flask Obj; 創建實例: Flask 類的構造函數只有一個必須指定的參數,即程式主模塊或包的名字。在大多數程式中,Python 的 __n ...
  • Flask框架整個流程源碼解讀 一.總的流程 運行Flask其本質是運行Flask對象中的\_\_call\_\_,而 本質調用wsgi_app的方法 二.具體流程 1.ctx = self.request_context(environ) environ 請求相關的,ctx現在是包含request ...
  • 最近在開發一個輕量級ASP.NET MVC開發框架,需要加入日誌記錄,郵件發送,簡訊發送等功能,為了保持模塊的獨立性,所以需要通過消息通信的方式進行處理,為了保持框架在部署,使用,二次開發過程中的簡易便捷性,所以沒有選擇傳統的MQ,而是基於Redis的訂閱發佈實現一個系統內部消息組件,話不多說,上碼 ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 GitHub:https://github.com/kwwwvagaa/NetWinformControl 碼雲:https://gitee.com/kwwwvagaa/net_winform_custom_contr ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...