本文介绍了根据文本框值启用/禁用复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何根据文本框值启用或禁用复选框?如果文本框值大于零,则启用复选框,否则禁用复选框.如何编写样式触发器呢? (是否有其他替代方法?)
how can enable or disable checkbox based on textbox value ? if textbox value greater than zero then enable checkbox else disable checkbox . how can write style trigger for this ? (is there any alternate method ?)
推荐答案
private void textBox1_TextChanged(object sender, TextChangedEventArgs e)
{
if (textBox1.Text.Length > 0)
checkBox1.IsEnabled = true;
else
checkBox1.IsEnabled = false;
}
这篇关于根据文本框值启用/禁用复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!