gpt4 book ai didi

C# 设置 ComboBox DropDownList 默认值或遍历所有 CheckBox

转载 作者:太空宇宙 更新时间:2023-11-03 13:20:43 24 4
gpt4 key购买 nike

我的 WinForms 应用程序中有多个组合框,它们都使用 DropDownList 样式。它们没有选择默认值,我希望它们都自动显示第一个值,而无需用户选择任何内容。

起初我尝试通过以下方式设置每个 ComboBox 的 selectedValue:

ComboBox1.SelectedIndex = 0;

但我不确定将这段代码放在哪里。理想情况下,它会在每个 ComboBox 初始化时执行一次,但我不知道这是否可能。

然后我想我可以把代码放到整个Form的load方法中:

private void GUI_Load(object sender, EventArgs e)
{
ComboBox1.SelectedIndex = 0;
ComboBox2.SelectedIndex = 0;
}

这行得通,但随着 ComboBox 的数量变大,这会变得很烦人。所以我想像这样循环:

private void GUI_Load(object sender, EventArgs e)
{
foreach (Control c in this.Controls)
{
if (c is ComboBox)
{
ComboBox combo = (ComboBox)c;
combo.SelectedIndex = 0;
}
}
}

由于某些原因,这行不通;它循环的唯一控件只是面板,没有别的。

我在这个循环中做错了什么?这里最好的解决方案是什么?

最佳答案

/// <summary>
/// For use with Windows Forms
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="controlCollection"></param>
/// <param name="resultCollection"></param>
public static void GetControlsRecursiveWin<T>(System.Windows.Forms.Control.ControlCollection controlCollection, List<T> resultCollection) where T : System.Windows.Forms.Control
{
foreach (System.Windows.Forms.Control control in controlCollection)
{
if (control is T)
resultCollection.Add((T)control);

if (control.HasChildren)
GetControlsRecursiveWin(control.Controls, resultCollection);
}
}

用法:

List<ComboBox> lstDDL = new List<ComboBox>();
GetControlsRecursiveWin<ComboBox>("<name of yourpanel>".Controls, lstDDL);

这将生成该控件中所有类型为 ComboBox 的控件的列表。然后您可以迭代并将这些控件设置为所需的值。

关于C# 设置 ComboBox DropDownList 默认值或遍历所有 CheckBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24335196/

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