我想在我的组合框列表中添加“其他”选项,当我们选择它时,应该会动态出现一个文本框并要求其他值,例如其他人才。
在此先感谢,文加德什
您可能需要如下代码:)
private void comboBox_SelectedIndexChanged(object sender, EventArgs e)
{
if (this.comboBox.Text.Equals("Other"))
this.yourTextBox.Visible = true;
else
this.yourTextBox.Visible = false;
}
试试看,
无法在 ComboBox 中添加 TextBox。取而代之的是,我们可以在组合框中添加项目。
这里的组合框是 ComboBox 类的对象
combobox.Items.Add(new ComboBoxItem()
{
Text="Other"
});