关于接口、接口继承类、PropertyGrid控件

//一个接口IA Interface IA; { double xxxx; } //一个接口A的继承类 class A:IA { private double _xxxx; [Description("说明文字"),Category("分类")] public double xxxx { get {return _xxxx;} set {set _xxxx=value} } } //A实例化后的A1 IA A1; A1=new A(); //////////A1可以通过控件PropertyGrid来显示各属性 /////////修改A1的属性值,在PropertyGrid上会同步显示修改 A1.xxxx=0.03232; Messbox.Show("xxxx:"+xxxx.ToString());

你可能感兴趣的:(关于接口、接口继承类、PropertyGrid控件)