欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Winform自定义控件基本使用

程序员文章站 2022-03-04 11:10:26
...

 Winform自定义控件示例源码(属性窗口中可查看)

注意点:

  1. 自定义控件属性定义好后要实例化才可以在属性窗口中看到

  2. 属性本身必须是private,get&set方法是公有,否则会陷入死循环。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ZEYYO.WMS.USERCONTROL
{
    public partial class BtnSelect : UserControl
    {
        public BtnSelect()
        {
            InitializeComponent();
        }

        private string rectWidth;
        //Browsable-true代表在VS属性窗口中可见,Description为属性窗口中的描述,Category为分组信息
        [Browsable(true), Description("边框宽度"), Category("UserInfo")]
        public string RectWidth
        {
            get 
            {
                return rectWidth;
            }
            set
            {
                rectWidth = value;
            }
        }
    }
}