通过索引 ID 检索 DropDownList 的值

发布于 2024-10-18 06:45:05 字数 128 浏览 3 评论 0原文

我试图通过指定其索引来检索下拉列表的值,但我似乎无法找到实现此目的的方法。我也不希望它成为选定的值,基本上我需要遍历列表,然后将其添加到数组中。我可以找到各种方法来根据值而不是索引 id 来获取它,有人知道如何做到这一点吗?我正在使用 c#。

I am trying to retrieve the value of a dropdown list by specifying its indexid but I cant seem to find a way to accomplish this. I dont want it to be the selected value either, basically I need to go through the list, and then add it to an array. I can find all kinds of ways to get it based on the value but not by the index id anyone know how to do this? Im using c#.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

伪心 2024-10-25 06:45:05

字符串 valueAtIndex = myComboBox.Items[SomeIndexValue].Value;

string valueAtIndex = myComboBox.Items[SomeIndexValue].Value;

姐不稀罕 2024-10-25 06:45:05

您尝试过lstWhatever.SelectedIndex吗?

由于该对象支持 IEnumerable,因此您可以使用 foreach 进行循环(如果您愿意的话)。

Have you tried lstWhatever.SelectedIndex?

Since the object supports IEnumerable, you can use foreach to loop through, if that is your intention.

下壹個目標 2024-10-25 06:45:05

这是您要找的吗?

 List<String> theList = new List<string>();
        foreach (var item in comboBox1.Items)
        {
            theList.Add(item.ToString());
        }

其中,comboBox1 是您的下拉列表,我假设您正在谈论 Windows 窗体项目。

或者,如果您想使用索引 ID:

List<string> theList = new List<string>();
            for (int i = 0; i < comboBox1.Items.Count; i++)
            {
                theList.Add(comboBox1.Items[i].ToString());
            }

Is this what you are looking for?

 List<String> theList = new List<string>();
        foreach (var item in comboBox1.Items)
        {
            theList.Add(item.ToString());
        }

Where comboBox1 is your dropdown list and i assumed you are talking about a windows forms project.

Or, if you want to us Index Id:

List<string> theList = new List<string>();
            for (int i = 0; i < comboBox1.Items.Count; i++)
            {
                theList.Add(comboBox1.Items[i].ToString());
            }
不疑不惑不回忆 2024-10-25 06:45:05

String valueAtIndex = myComboBox.Items[myComboBox.SelectedIndex].ToString();

String valueAtIndex = myComboBox.Items[myComboBox.SelectedIndex].ToString();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文