怎么样用C#语言编写WINDOWS.FORMS控件

2024-11-14 23:35:49
推荐回答(1个)
回答(1):

public
class
MyButton:Button
{
public
string
MyText
{
get{
return
"按钮上显示的是:"
+
this.Text
}
}
}
最简单的控件,跟普通按钮完全一样,就是多了个只读的属性叫MyText
~~~