使用propertyGrid,
工具栏->右键->自定义->.net->propertyGrid

解决方案 »

  1.   

    public class MyButton : System.Windows.Forms.Button
    {
       private object _Value = null;
       
       public object Value
       {  get { return this._Value; }
          set { this._Value = value; }
       }
    }我不知道你是不是這個意思
      

  2.   

    to: snof(雪狼) 
    没明白您的意思,propertyGrid不是只是一个类吗?
    我想是不是能够重载button或者什么的来得到有value属性的button??
      

  3.   

    同意楼上的,
    补充在Toolbox,Customize Toolbox,添加编译好的dll,使用MyButton就可以了
      

  4.   

    to:rouser(我是一棵秋天的树)谢谢,要的就是这个,不过原来的  text 属性还在吗?
    在vs7里面MyButton btn = newMyButton();
    btn.Value = "ads"当我 按下 .后只出现了 value
      

  5.   

    在,只要你沒override,就還是原來的
    :)