码迷,mamicode.com
首页 > 其他好文 > 详细

扩展控件属性

时间:2015-01-07 18:38:05      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

1、创建用户控件项目

2、    注释以下这一行 

        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            //this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        }

 

 

    public partial class ExLabel : Label

    {

        public ExLabel()

        {

            InitializeComponent();

            this.Click += new EventHandler(exLabel_Click); 

        }

 

           protected override void OnMouseEnter(System.EventArgs e)  

           {  

               base.OnMouseEnter(e);

               this.ForeColor = Color.Black;

               this.BackColor = Color.White;

            //this.Font = new Font("宋体", 10F, FontStyle.Underline);  

           }  

  

         protected override void OnMouseLeave(System.EventArgs e)  

          {  

              base.OnMouseLeave(e);

              this.ForeColor = Color.White;

              this.BackColor = Color.Black;

              //this.Font = new Font("宋体", 10F, FontStyle.Regular);  

          }

 

         private void exLabel_Click(object sender, EventArgs e)

         {

             this.ForeColor = Color.Magenta;

             //this.BackColor = Color.Blue;

         }

扩展控件属性

标签:

原文地址:http://www.cnblogs.com/xihong2014/p/4208960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!