在 Visual C# 2010 中设置下拉列表选定值

发布于 2025-01-08 16:27:15 字数 159 浏览 0 评论 0原文

我在 Visual Studio 2010 中有一个 Windows 窗体项目,我想知道如何设置下拉菜单的默认选定值。

例如,当我当前运行该项目时,下拉菜单为空,直到我单击它并选择一个值。我想修改下拉菜单,使其默认具有一个用户可以更改的值。如何通过 C# 在设计器视图和运行时完成此任务?

I have a Windows Forms project in Visual Studio 2010 and I was wondering how I would set a default selected value of a dropdown menu.

For example, when I run the project currently the dropdown menu is blank until I click on it and select a value. I want to modify the dropdown menu so that it has a value by default that the user can then change. How can I accomplish this both in the designer view and at runtime through C#?

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

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

发布评论

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

评论(1

对岸观火 2025-01-15 16:27:15

设置属性 SelectedIndex。

运行时:

comboBox1.SelectedIndex = 0; //Selects the first option

如果您想选择包含特定文本的选项。

int index = comboBox1.FindString("burger"); //get index
comboBox1.SelectedIndex = index;

设计时

选择控件,转到属性窗口并查找 SelectedIndex 属性,设置所需的索引。

Set property SelectedIndex.

Run-time:

comboBox1.SelectedIndex = 0; //Selects the first option

If you want to select option that contains specific text.

int index = comboBox1.FindString("burger"); //get index
comboBox1.SelectedIndex = index;

Design-time:

Select the control, go to property window and look for SelectedIndex property, set the desired index.

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