C#.NET 封裝自訂群組件(控制項)Dll

來源:互聯網
上載者:User

標籤:c#   組件   

封裝自訂控制項很簡單,沒什麼技術含量,這裡通過封裝自訂的數字文字框執行個體簡單總結一下:


【1】建立自訂控制項庫 -- Windows Forms Control Library




【2】添加自訂群組件 -- Component Class




【3】繼承TextBox,添加KeyPress事件,代碼如下:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Diagnostics;using System.Linq;using System.Text;using System.Windows.Forms;namespace WinForms.SelfControl{    /// <summary>    /// 數字文字框 -- 如果產生的Dll在工具箱中匯入不了,可以直接將Dll拖入    /// </summary>    public partial class TextBoxNumber : TextBox    {        public TextBoxNumber()        {            InitializeComponent();        }        public TextBoxNumber(IContainer container)        {            container.Add(this);            InitializeComponent();            this.KeyPress += TextBoxNumber_KeyPress;        }        /// <summary>        /// 只能輸入數字        /// </summary>        void TextBoxNumber_KeyPress(object sender, KeyPressEventArgs e)        {            //如果輸入的不是數字鍵,也不是斷行符號鍵、Backspace鍵,則取消該輸入            if ( !(Char.IsNumber(e.KeyChar)) &&                  e.KeyChar != (char)13       &&                  e.KeyChar != (char)8 )            {                e.Handled = true;            }         }    }}

【4】將產生後的Dll添加到工具箱




【5】測試自訂的控制項 -- 驗證是否只能輸入數字




【6】注意問題

必須採用AnyCPU編譯,如果產生的Dll匯入到工具箱有問題,可以直接將檔案拖入。。。




測試源碼:

http://download.csdn.net/detail/aoshilang2249/8172891




C#.NET 封裝自訂群組件(控制項)Dll

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.