Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我正在为一个内部工具创建一个应用程序,并试图将其中一个表单上的复选框的功能转移到一个按钮上。使用设计器界面,最好的方法是什么?提前致谢!
使用 aRadioButton并执行此操作
RadioButton
this.radioButton1.Appearance = System.Windows.Forms.Appearance.Button;
检查 CheckBox 本身的外观属性。我从 rwiti 的回答中得到了这个,这提醒我 CheckBox 也Appearance有财产。
Appearance
chk.Appearance = Appearance.Button;
你完成了..