(二十四)c#Winform自定義控制項-單標題窗體

来源:https://www.cnblogs.com/bfyx/archive/2019/08/16/11364134.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

準備工作

這個窗體繼承子基類窗體FrmBase,如果你對FrmBase還不瞭解,請移步 (十七)c#Winform自定義控制項-基類窗體 查看

開始

添加Form,命名FrmWithTitle,繼承自FrmBase

代碼較少,直接全部代碼

 1 // 版權所有  黃正輝  交流群:568015492   QQ:623128629
 2 // 文件名稱:FrmWithTitle.cs
 3 // 創建日期:2019-08-15 16:05:30
 4 // 功能描述:FrmWithTitle
 5 // 項目地址:https://gitee.com/kwwwvagaa/net_winform_custom_control
 6 using System;
 7 using System.Collections.Generic;
 8 using System.ComponentModel;
 9 using System.Data;
10 using System.Drawing;
11 using System.Linq;
12 using System.Text;
13 using System.Windows.Forms;
14 
15 namespace HZH_Controls.Forms
16 {
17     [Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(System.ComponentModel.Design.IDesigner))]
18     public partial class FrmWithTitle : FrmBase
19     {
20         [Description("窗體標題"), Category("自定義")]
21         public string Title
22         {
23             get
24             {
25                 return lblTitle.Text;
26             }
27             set
28             {
29                 lblTitle.Text = value;
30             }
31         }
32         private bool _isShowCloseBtn = false;
33         [Description("是否顯示右上角關閉按鈕"), Category("自定義")]
34         public bool IsShowCloseBtn
35         {
36             get
37             {
38                 return _isShowCloseBtn;
39             }
40             set
41             {
42                 _isShowCloseBtn = value;
43                 btnClose.Visible = value;
44                 if (value)
45                 {
46                     btnClose.Location = new Point(this.Width - btnClose.Width - 10, 0);
47                     btnClose.BringToFront();
48                 }
49             }
50         }
51 
52         public FrmWithTitle()
53         {
54             InitializeComponent();
55         }
56 
57         private void btnClose_MouseDown(object sender, MouseEventArgs e)
58         {
59             this.Close();
60         }
61 
62         private void FrmWithTitle_Shown(object sender, EventArgs e)
63         {
64             if (IsShowCloseBtn)
65             {
66                 btnClose.Location = new Point(this.Width - btnClose.Width - 10, 0);
67                 btnClose.BringToFront();
68             }
69         }
70 
71         private void btnClose_MouseDown_1(object sender, MouseEventArgs e)
72         {
73             this.Close();
74         }
75 
76         private void FrmWithTitle_VisibleChanged(object sender, EventArgs e)
77         {
78         }
79     }
80 }
View Code
  1 namespace HZH_Controls.Forms
  2 {
  3     partial class FrmWithTitle
  4     {
  5         /// <summary>
  6         /// Required designer variable.
  7         /// </summary>
  8         private System.ComponentModel.IContainer components = null;
  9 
 10         /// <summary>
 11         /// Clean up any resources being used.
 12         /// </summary>
 13         /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Windows Form Designer generated code
 24 
 25         /// <summary>
 26         /// Required method for Designer support - do not modify
 27         /// the contents of this method with the code editor.
 28         /// </summary>
 29         private void InitializeComponent()
 30         {
 31             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWithTitle));
 32             this.lblTitle = new System.Windows.Forms.Label();
 33             this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H();
 34             this.btnClose = new System.Windows.Forms.Panel();
 35             this.SuspendLayout();
 36             // 
 37             // lblTitle
 38             // 
 39             this.lblTitle.BackColor = System.Drawing.Color.Transparent;
 40             this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
 41             this.lblTitle.Font = new System.Drawing.Font("微軟雅黑", 17F);
 42             this.lblTitle.Location = new System.Drawing.Point(0, 0);
 43             this.lblTitle.Name = "lblTitle";
 44             this.lblTitle.Size = new System.Drawing.Size(427, 60);
 45             this.lblTitle.TabIndex = 5;
 46             this.lblTitle.Text = "標題";
 47             this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 48             // 
 49             // ucSplitLine_H1
 50             // 
 51             this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238)))));
 52             this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Top;
 53             this.ucSplitLine_H1.Location = new System.Drawing.Point(0, 60);
 54             this.ucSplitLine_H1.Name = "ucSplitLine_H1";
 55             this.ucSplitLine_H1.Size = new System.Drawing.Size(427, 1);
 56             this.ucSplitLine_H1.TabIndex = 0;
 57             this.ucSplitLine_H1.TabStop = false;
 58             // 
 59             // btnClose
 60             // 
 61             this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
 62             this.btnClose.BackgroundImage = global::HZH_Controls.Properties.Resources.dialog_close;
 63             this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
 64             this.btnClose.Location = new System.Drawing.Point(399, 0);
 65             this.btnClose.MaximumSize = new System.Drawing.Size(0, 60);
 66             this.btnClose.Name = "btnClose";
 67             this.btnClose.Size = new System.Drawing.Size(28, 60);
 68             this.btnClose.TabIndex = 6;
 69             this.btnClose.Visible = false;
 70             this.btnClose.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnClose_MouseDown_1);
 71             // 
 72             // FrmWithTitle
 73             // 
 74             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
 75             this.BackColor = System.Drawing.Color.White;
 76             this.ClientSize = new System.Drawing.Size(427, 310);
 77             this.Controls.Add(this.btnClose);
 78             this.Controls.Add(this.ucSplitLine_H1);
 79             this.Controls.Add(this.lblTitle);
 80             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
 81             this.IsFullSize = false;
 82             this.IsShowMaskDialog = true;
 83             this.IsShowRegion = true;
 84             this.Name = "FrmWithTitle";
 85             this.Redraw = true;
 86             this.ShowIcon = false;
 87             this.ShowInTaskbar = false;
 88             this.Text = "FrmWithTitle";
 89             this.Shown += new System.EventHandler(this.FrmWithTitle_Shown);
 90             this.VisibleChanged += new System.EventHandler(this.FrmWithTitle_VisibleChanged);
 91             this.ResumeLayout(false);
 92 
 93         }
 94 
 95         #endregion
 96 
 97         private System.Windows.Forms.Label lblTitle;
 98         private Controls.UCSplitLine_H ucSplitLine_H1;
 99         private System.Windows.Forms.Panel btnClose;
100 
101     }
102 }
View Code

用處及效果

最後的話

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


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

-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 目錄 ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 開源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control 如果覺得寫的還行,請點個 star 支持一下吧 歡迎前來交流探討: 企鵝群568015492 目錄 ...
  • 前提 入行已經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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...