在 Visual C# 2010 中设置下拉列表选定值
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置属性 SelectedIndex。
运行时:
如果您想选择包含特定文本的选项。
设计时:
选择控件,转到属性窗口并查找 SelectedIndex 属性,设置所需的索引。
Set property SelectedIndex.
Run-time:
If you want to select option that contains specific text.
Design-time:
Select the control, go to property window and look for SelectedIndex property, set the desired index.