(八十七)c#Winform自定義控制項-朝上的瓶子

来源:https://www.cnblogs.com/bfyx/archive/2020/05/15/12897221.html
-Advertisement-
Play Games

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


官網

http://www.hzhcontrols.com/

前提

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

目錄

http://www.hzhcontrols.com/blog-63.html

用處及效果

image.png

準備工作

之前的瓶子是朝下的,這裡擴展一下 朝上

(五十六)c#Winform自定義控制項-瓶子(工業)

開始

增加一個屬性

        private Direction direction = Direction.Down;           [Description("瓶子方向,預設朝下"), Category("自定義")]         public Direction Direction         {             get return direction; }             set             {                 direction = value;                 Refresh();             }         }

重繪裡面判斷朝上的代碼

 else             {                 //寫文字                 var size = g.MeasureString(title, Font);                 g.DrawString(title, Font, new SolidBrush(ForeColor), new PointF((this.Width - size.Width) / 2, this.Height - size.Height - 2));                 //畫空瓶子                 GraphicsPath pathPS = new GraphicsPath();                 Point[] psPS = new Point[]                  {                            new Point(m_workingRect.Left + m_workingRect.Width / 4, m_workingRect.Top),                     new Point(m_workingRect.Right - 1- m_workingRect.Width / 4, m_workingRect.Top),                     new Point(m_workingRect.Right - 1, m_workingRect.Top + 15),                     new Point(m_workingRect.Right - 1, m_workingRect.Bottom),                     new Point(m_workingRect.Left , m_workingRect.Bottom),                     new Point(m_workingRect.Left, m_workingRect.Top + 15),                 };                 pathPS.AddLines(psPS);                 pathPS.CloseAllFigures();                 g.FillPath(new SolidBrush(bottleColor), pathPS);                 //畫液體                 decimal decYTHeight = (m_value / maxValue) * m_workingRect.Height;                 GraphicsPath pathYT = new GraphicsPath();                 Rectangle rectYT = Rectangle.Empty;                 if (decYTHeight > m_workingRect.Height - 15)                 {                     PointF[] psYT = new PointF[]                                               new PointF((float)(m_workingRect.Left+(decYTHeight-(m_workingRect.Height-15)))+3,(float)(m_workingRect.Bottom-decYTHeight)),                                            new PointF((float)(m_workingRect.Right-(decYTHeight-(m_workingRect.Height-15)))-3,(float)(m_workingRect.Bottom-decYTHeight)),                           new PointF(m_workingRect.Right-1, m_workingRect.Top+15),                         new PointF(m_workingRect.Right-1, m_workingRect.Bottom),                         new PointF(m_workingRect.Left, m_workingRect.Bottom),                         new PointF(m_workingRect.Left, m_workingRect.Top+15),                     };                     pathYT.AddLines(psYT);                     pathYT.CloseAllFigures();                     rectYT = new Rectangle(m_workingRect.Left + (int)(decYTHeight - (m_workingRect.Height - 15)) +1, (int)(m_workingRect.Bottom - decYTHeight - 4), m_workingRect.Width - (int)(decYTHeight - (m_workingRect.Height - 15)) * 2-2 , 10);                 }                 else                 {                     PointF[] psYT = new PointF[]                                               new PointF(m_workingRect.Left,(float)(m_workingRect.Bottom-decYTHeight)),                         new PointF(m_workingRect.Right-1,(float)(m_workingRect.Bottom-decYTHeight)),                         new PointF(m_workingRect.Right-1,m_workingRect.Bottom),                         new PointF(m_workingRect.Left,m_workingRect.Bottom),                     };                     pathYT.AddLines(psYT);                     pathYT.CloseAllFigures();                     rectYT = new Rectangle(m_workingRect.Left, m_workingRect.Bottom - (int)decYTHeight - 5, m_workingRect.Width, 10);                 }                   g.FillPath(new SolidBrush(liquidColor), pathYT);                 g.FillPath(new SolidBrush(Color.FromArgb(50, bottleMouthColor)), pathYT);                 //畫液體面                 g.FillEllipse(new SolidBrush(liquidColor), rectYT);                 g.FillEllipse(new SolidBrush(Color.FromArgb(50, Color.White)), rectYT);                 //畫高亮                 int intCount = m_workingRect.Width / 2 / 4;                 int intSplit = (255 - 100) / intCount;                 for (int i = 0; i < intCount; i++)                 {                     int _penWidth = m_workingRect.Width / 2 - 4 * i;                     if (_penWidth <= 0)                         _penWidth = 1;                     g.DrawLine(new Pen(new SolidBrush(Color.FromArgb(10, Color.White)), _penWidth), new Point(m_workingRect.Width / 2, m_workingRect.Top + 15), new Point(m_workingRect.Width / 2, m_workingRect.Bottom));                     if (_penWidth == 1)                         break;                 }                 //畫瓶底                 g.FillEllipse(new SolidBrush(liquidColor), new RectangleF(m_workingRect.Left, m_workingRect.Bottom - 5, m_workingRect.Width - 2, 10));                 g.FillEllipse(new SolidBrush(Color.FromArgb(50, liquidColor)), new RectangleF(m_workingRect.Left, m_workingRect.Bottom - 5, m_workingRect.Width - 2, 10));                 //畫瓶口                 g.FillRectangle(new SolidBrush(bottleMouthColor), new Rectangle(m_workingRect.Left + m_workingRect.Width / 4, m_workingRect.Top - 15 + 1, m_workingRect.Width / 2, 15));                 //畫瓶頸陰影                 GraphicsPath pathPJ = new GraphicsPath();                 Point[] psPJ = new Point[]                  {                            new Point(m_workingRect.Left+m_workingRect.Width/4, m_workingRect.Top),                     new Point(m_workingRect.Right-1-m_workingRect.Width/4, m_workingRect.Top),                     new Point(m_workingRect.Right-1, m_workingRect.Top+15),                     new Point(m_workingRect.Left,  m_workingRect.Top+15)                                };                 pathPJ.AddLines(psPJ);                 pathPJ.CloseAllFigures();                 g.FillPath(new SolidBrush(Color.FromArgb(50, bottleMouthColor)), pathPJ);                 //寫編號                 if (!string.IsNullOrEmpty(m_NO))                 {                     var nosize = g.MeasureString(m_NO, Font);                     g.DrawString(m_NO, Font, new SolidBrush(ForeColor), new PointF((this.Width - nosize.Width) / 2, m_workingRect.Bottom - nosize.Height - 10));                 }             }

最後的話

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


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

-Advertisement-
Play Games
更多相關文章
  • ReentrantLock完美實現了互斥,完美解決了併發問題。但是卻意外發現它對於讀多寫少的場景效率實在不行。此時ReentrantReadWriteLock來救場了!一種適用於讀多寫少場景的鎖,可以大幅度提升併發效率,你必須會哦! 序幕 為何引入讀寫鎖? ReentrantReadWriteLoc ...
  • 接上一章, "Windows玩轉Kubernetes系列1 VirtualBox安裝Centos" ,我們開始學習如何在Centos中安裝Docker 準備 關閉防火牆 防火牆一定要提前關閉,否則在後續安裝K8S集群的時候,會有一些問題,執行下麵語句: 關閉Swap 註掉swap 關閉SeLinux ...
  • 開源項目CRI-O(https://github.com/kubernetes-incubator/cri-o),即之前的OCID,旨在不依賴傳統容器引擎的前提下,使開源Kubernetes調度框架可以管理和啟動容器化的工作負載。 使用Google發起、Kubernetes工程師開發的容器運行時介面 ...
  • 在聚合的分組統計中我們會面臨兩種分組元素類型:連續型如時間,自然數等、離散型如地點、產品等。離散型數據本身就代表不同的組別,但連續型數據則需要手工按等長間隔進行切分了。下麵是一個按價錢段聚合的例子: POST /cartxns/_search { "size" : 1, "aggs": { "sal ...
  • mesos,節點,master,Mesos,marathon Mesos 安裝與使用 以 Mesos 結合 Marathon 應用框架為例,來看下如何快速搭建一套 Mesos 平臺。 Marathon 是可以跟 Mesos 一起協作的一個 framework,基於 Scala 實現,可以實現保持應用 ...
  • iptables,容器,0.0,Docker,訪問 容器訪問控制 容器的訪問控制,主要通過 Linux 上的 iptables 防火牆來進行管理和實現。iptables 是 Linux 上預設的防火牆軟體,在大部分發行版中都自帶。 容器訪問外部網路 容器要想訪問外部網路,需要本地系統的轉發支持。在L ...
  • 前言 本文的文字及圖片來源於網路,僅供學習、交流使用,不具有任何商業用途,版權歸原作者所有,如有問題請及時聯繫我們以作處理。 又到一年畢業季 時值畢業季,有不少小伙伴深受論文查重的困擾。因此我便想到做一個簡單的自動去重的工具,先看看效果,我們再對原理或是代碼實現做進一步的分析。 首先需要輸入appi ...
  • /// <summary> /// Linq 連接查詢 /// Geovin Du /// 塗聚文 /// https://docs.microsoft.com/en-us/dotnet/csharp/linq/perform-inner-joins /// </summary> /// <para ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...