gpt4 book ai didi

c# - 提交表单后如何清除 "comboBox"的内容

转载 作者:行者123 更新时间:2023-11-30 20:34:37 25 4
gpt4 key购买 nike

提交数据后,我试图用 C# 清除 Windows 窗体的内容。

我已经设法使用以下代码为文本框执行此操作:

foreach (Control c in Controls)
{
if (c is TextBox)
{
c.Text = "";

但是,我正在努力为表单中的“comboBoxes”完成相同的任务。我尝试使用如下代码的变体,但这似乎不起作用。

if (c is ComboBox)
{
c.Text = "";

完整代码如下:

 foreach (Control c in Controls)
{
if (c is TextBox)
{
c.Text = "";
}
if (c is ComboBox)
{
c.Text = "";
}

谁能提出解决方案,我错过了什么?

亲切的问候

伊恩

最佳答案

尝试

if (c is ComboBox)
{
c.Items.Clear();
}

关于c# - 提交表单后如何清除 "comboBox"的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38925349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com