(七十八)c#Winform自定義控制項-倒影組件

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

用處及效果

準備工作

GDI+畫圖,不瞭解先百度

開始

思路:

控制項擴展屬性,在組件中對需要顯示倒影的控制項的父控制項添加Paint事件,在Paint事件中繪製控制項,並旋轉180,然後畫到父控制項上,然後再覆蓋一層漸變色,完美。

添加一個類ShadowComponent 繼承Component,實現 IExtenderProvider介面,擴展屬性

代碼比較少,直接放上來了

  1 /// <summary>
  2         /// The m control cache
  3         /// </summary>
  4         Dictionary<Control, bool> m_controlCache = new Dictionary<Control, bool>();
  5 
  6         #region 構造函數    English:Constructor
  7         /// <summary>
  8         /// Initializes a new instance of the <see cref="ShadowComponent" /> class.
  9         /// </summary>
 10         public ShadowComponent()
 11         {
 12 
 13         }
 14 
 15         /// <summary>
 16         /// Initializes a new instance of the <see cref="ShadowComponent" /> class.
 17         /// </summary>
 18         /// <param name="container">The container.</param>
 19         public ShadowComponent(IContainer container)
 20             : this()
 21         {
 22             container.Add(this);
 23         }
 24         #endregion
 25 
 26         /// <summary>
 27         /// 指定此對象是否可以將其擴展程式屬性提供給指定的對象。
 28         /// </summary>
 29         /// <param name="extendee">要接收擴展程式屬性的 <see cref="T:System.Object" /></param>
 30         /// <returns>如果此對象可以擴展程式屬性提供給指定對象,則為 true;否則為 false。</returns>
 31         public bool CanExtend(object extendee)
 32         {
 33             if (extendee is Control && !(extendee is Form))
 34                 return true;
 35             return false;
 36         }
 37 
 38         /// <summary>
 39         /// Gets the show shadow.
 40         /// </summary>
 41         /// <param name="control">The control.</param>
 42         /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
 43         [Browsable(true), Category("自定義屬性"), Description("是否顯示倒影"), DisplayName("ShowShadow"), Localizable(true)]
 44         public bool GetShowShadow(Control control)
 45         {
 46             if (m_controlCache.ContainsKey(control))
 47                 return m_controlCache[control];
 48             else
 49                 return false;
 50         }
 51 
 52         /// <summary>
 53         /// Sets the show shadow.
 54         /// </summary>
 55         /// <param name="control">The control.</param>
 56         /// <param name="isShowShadow">if set to <c>true</c> [is show shadow].</param>
 57         public void SetShowShadow(Control control, bool isShowShadow)
 58         {
 59             control.ParentChanged += control_ParentChanged;
 60             m_controlCache[control] = isShowShadow;
 61         }
 62 
 63         /// <summary>
 64         /// Handles the ParentChanged event of the control control.
 65         /// </summary>
 66         /// <param name="sender">The source of the event.</param>
 67         /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 68         void control_ParentChanged(object sender, EventArgs e)
 69         {
 70             Control control = sender as Control;
 71             if (control.Parent != null && m_controlCache[control])
 72             {
 73                 if (!lstPaintEventControl.Contains(control.Parent))
 74                 {
 75                     lstPaintEventControl.Add(control.Parent);
 76                     Type type = control.Parent.GetType();
 77                     System.Reflection.PropertyInfo pi = type.GetProperty("DoubleBuffered", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
 78                     pi.SetValue(control.Parent, true, null);
 79                     control.Parent.Paint += Parent_Paint;
 80                 }
 81             }
 82         }
 83 
 84         /// <summary>
 85         /// The LST paint event control
 86         /// </summary>
 87         List<Control> lstPaintEventControl = new List<Control>();
 88         /// <summary>
 89         /// The shadow height
 90         /// </summary>
 91         private float shadowHeight = 0.3f;
 92 
 93         /// <summary>
 94         /// Gets or sets the height of the shadow.
 95         /// </summary>
 96         /// <value>The height of the shadow.</value>
 97         [Browsable(true), Category("自定義屬性"), Description("倒影高度,0-1"), Localizable(true)]
 98         public float ShadowHeight
 99         {
100             get { return shadowHeight; }
101             set { shadowHeight = value; }
102         }
103         /// <summary>
104         /// The BLN loading
105         /// </summary>
106         bool blnLoading = false;
107         /// <summary>
108         /// Handles the Paint event of the Parent control.
109         /// </summary>
110         /// <param name="sender">The source of the event.</param>
111         /// <param name="e">The <see cref="PaintEventArgs"/> instance containing the event data.</param>
112         void Parent_Paint(object sender, PaintEventArgs e)
113         {
114             if (blnLoading)
115                 return;           
116             if (shadowHeight > 0)
117             {
118                 var control = sender as Control;
119                 var lst = m_controlCache.Where(p => p.Key.Parent == control && p.Value);
120                 if (lst != null && lst.Count() > 0)
121                 {
122                     blnLoading = true;
123                     e.Graphics.SetGDIHigh();
124                     foreach (var item in lst)
125                     {
126                         Control _control = item.Key;
127 
128                         using (Bitmap bit = new Bitmap(_control.Width, _control.Height))
129                         {
130                             _control.DrawToBitmap(bit, _control.ClientRectangle);
131                             using (Bitmap bitNew = new Bitmap(bit.Width, (int)(bit.Height * shadowHeight)))
132                             {
133                                 using (var g = Graphics.FromImage(bitNew))
134                                 {
135                                     g.DrawImage(bit, new RectangleF(0, 0, bitNew.Width, bitNew.Height), new RectangleF(0, bit.Height - bit.Height * shadowHeight, bit.Width, bit.Height * shadowHeight), GraphicsUnit.Pixel);
136                                 }
137                                 bitNew.RotateFlip(RotateFlipType.Rotate180FlipNone);
138                                 e.Graphics.DrawImage(bitNew, new Point(_control.Location.X, _control.Location.Y + _control.Height + 1));
139                                 Color bgColor = GetParentColor(_control);
140                                 LinearGradientBrush lgb = new LinearGradientBrush(new Rectangle(_control.Location.X, _control.Location.Y + _control.Height + 1, bitNew.Width, bitNew.Height), Color.FromArgb(50, bgColor), bgColor, 90f);   //75f 表示角度
141                                 e.Graphics.FillRectangle(lgb, new Rectangle(new Point(_control.Location.X, _control.Location.Y + _control.Height + 1), bitNew.Size));
142                             }
143                         }
144                     }
145                 }
146             }
147             blnLoading = false;
148         }
149 
150         /// <summary>
151         /// Gets the color of the parent.
152         /// </summary>
153         /// <param name="c">The c.</param>
154         /// <returns>Color.</returns>
155         private Color GetParentColor(Control c)
156         {
157             if (c.Parent.BackColor != Color.Transparent)
158             {
159                 return c.Parent.BackColor;
160             }
161             return GetParentColor(c.Parent);
162         }

 

最後的話

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


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

-Advertisement-
Play Games
更多相關文章
  • [TOC] 概述 首先同步下項目概況: 上篇文章分享了,路由中間件 Jaeger 鏈路追蹤(理論篇),這篇文章咱們接著分享:路由中間件 Jaeger 鏈路追蹤(實戰篇)。 這篇文章,確實讓大家久等了,主要是裡面有一些技術點都是剛剛研究的,沒有存貨。 先看下咱們要實現的東西: API 調用了 5 個服 ...
  • [ 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的訂閱發佈實現一個系統內部消息組件,話不多說,上碼 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...