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.
初学者问题,但任何帮助将不胜感激。
我可以根据另一个类中的文本框的值禁用组合框或 dtp 吗?
我有一个日期/时间选择器,如果来自另一个类的文本框有任何值,我想禁用它。
最好的方法是什么?
最好的方法是举办类似的活动:
private void ReadWriteTB_TextChanged(object sender, RoutedEventArgs e) { if (condition) comboBox.Enabled = false; }