本文介绍了在组合框中进行选择后,我们如何制作eanble和禁用文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在组合框内进行选择时,我在启用和禁用控件方面遇到问题.
I have problem to enable and disable control while making selection in combobox.
推荐答案
TextBox.Enable = true; // to enable it
TextBox.Enable = false; // to disable it
private void comboBox1_DropDown(object sender, EventArgs e)
{
//Do your stuff
}
private void comboBox1_DropDownClosed(object sender, EventArgs e)
{
//Undo your stuff
}
这篇关于在组合框中进行选择后,我们如何制作eanble和禁用文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!