程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> C# 學習自定義控件,從一個簡單實用的日期控件開始。

C# 學習自定義控件,從一個簡單實用的日期控件開始。

編輯:.NET實例教程

實際項目中,蓋茨自帶的控件基本可以滿足我們的需要,但是如果客戶的需求比較特殊時,還是要自己動手做。
下邊我就介紹一個比較實用的日期控件,他不像dateTimePicker1年月日一個都不能少.可以根據需要只輸入年或
年月或年月日.

開發環境: Windows2000 + vs.Net2005(中文)

step1:新建項目-> windows -> Windows控件庫 ,命名為: winDateControl .

step2:在UserControl.cs中添加3個Textbox 和 3個label;
              分別命名為:txtYear , txtMonth , txtDay 。 label默認即可。
              txtYear .MaxLength = 4.
              txtMonth .MaxLength = 2.
              txtDay .MaxLength = 2.


step3:分別為3個Textbox填加事件_KeyPress(object sender, KeyPressEventArgs e),控制textbox只能接收數字和退格。源碼如下:
        /// <summary>
        /// 年,控制textbox只能接收數字和退格
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void txtYear_KeyPress(object sender, KeyPressEventArgs e)
        {
            if ((e.KeyChar >= 48 && e.KeyChar <= 57) || e.KeyChar == 8)
            {

            }
            else
            {
                e.Handled = true;
            }
        }

        /// <summary>
        /// 月,控制textbox只能接收數字和退格
      &nb

歡迎光臨學網,收藏本篇文章 [1] [2] [3] [4] [5]

$False$

sp; /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void txtMonth_KeyPress(object sender, KeyPressEventArgs e)
        {
            if ((e.KeyChar >= 48 && e.KeyChar <= 57) || e.KeyChar == 8)
            {

            }
            else
            {
                e.Handled = true;
            }
        }

        /// <summary>
        /// 日,控制textbox只能接收數字和退格
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void txtDay_KeyPress(object sender, KeyPressEventArgs e)
        {
            if ((e.KeyChar >= 48 && e.KeyChar <= 57) || e.KeyChar == 8)
            {

            }
            else
            {
                e.Handled = true;
            }歡迎光臨學網,收藏本篇文章 [1] [2] [3] [4] [5]


        }

 

step4:既然自己做的控件,那麼一定要給它添加Get、Set方法給用來取值、賦值,否則將無法使用它!
代碼如下:
        /// <summary>
        /// 返回日期字符串 可能的值: 1) XXXX年 , 2)XXXX年YY月 , 3) XXXX年YY月ZZ月
        /// </summary>
        /// <returns></returns>
        public string GetDate()
        {
            string datestring = string.Empty;

            if (this.txtYear.Text.Length > 0)
            {
                datestring = this.txtYear.Text.PadLeft(4, ''0'') + "年";          if (this.txtMonth.Text.Length > 0)
                {
                    datestring += this.txtMonth.Text.PadLeft(2, ''0'') + "月";

                    if (this.txtDay.Text.Length > 0)
                    {
                        datestring += this.txtDay.Text.PadLeft(2, ''0'') + "日";
                    }
                }
            }

         &nb文章整理:學網 http://www.xue5.com (本站) [1] [2] [3] [4] [5]

sp;  return datestring;
        }

        /// <summary>
        /// 日期,格式: 1) XXXX年 , 2)XXXX年YY月 , 3) XXXX年YY月ZZ月
        /// </summary>
        /// <param name="datestring"></param>
        public void SetDate(string datestring)
        {
            int years = datestring.IndexOf("年");
            if (years != -1)
            {
                this.txtYear.Text = datestring.Substring(0, years);
            }
            else
            {
                this.txtYear.Text = "";
            }

            int months = datestring.IndexOf("月");
            if (months != -1)
            {
                this.txtMonth.Text = datestring.Substring(years + 1, months - years - 1);
            }
            else
            {
                this.txtMonth.Text = "";
            }

歡迎光臨學網,收藏本篇文章 [1] [2] [3] [4] [5]

            int days = datestring.IndexOf("日");
            if (days != -1)
            {
                this.txtDay.Text = datestring.Substring(months + 1, days - months - 1);
            }
            else
            {
                this.txtDay.Text = "";
            }

        }

 

 step5: 生成 -〉生成 winDateControl .編譯通過就可以用了!

新建立一個項目,在工具箱右鍵-〉選擇項 ,在彈出的“選擇工具箱”對話框中浏覽剛才你編譯好的WinDateControl.dll就可以用了!

需要的源碼的請留下E-mail。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved