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.
我想要像 webforms 但在 winform 中重置控件。在表单设计中,控件具有默认值。我希望当用户编辑控件时,按下重置按钮后,控件会获得默认值。在互联网上搜索后,我找到了 ResetText() 方法,但不幸的是我没有找到很好的例子。如果您知道,请告诉我。:)
每个控件都有一个属性为“标签”,只需在标签中填写您的默认值。然后在“重置”按钮上编写以下代码:
private void btnReset_Click(object sender, EventArgs e) { txtSearch.Text= txtSearch.Tag.ToString(); }
最后感谢@Danny Beckett 的回答!!