本文介绍了Windows窗体:如何延长按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何延长一个按钮?
我想,有一个附加属性IsSwitchOffable一个按钮。
I want a Button that has an additional property IsSwitchOffable.
我必须写一个额外的自定义控件
Do I have to write an extra custom control?
编辑:
我想,按钮可用作标准WindowsFormsButton 。
I want that the button is usable as a standard WindowsFormsButton.
这包括我可以在设计时添加的按钮!
推荐答案
扩展一个按钮控件是没有什么不同,然后扩展在C#中的任何类。只要做到以下几点:
Extending a button control is no different then extending any class in C#. Simply do the following:
class ToggleButton : Button {
// Add your extra code
}
这篇关于Windows窗体:如何延长按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!