C# 列表框设置选中项
值
Profile 1
Profile 2
Profile 3
我有一个 C# 列表框,其中包含我希望在加载表单时选择配置文件 2 的 。我该怎么做?
i have a C# listbox with the values
Profile 1
Profile 2
Profile 3
I want to have Profile 2 selected when the form loads. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
设置
ListBox.SelectedIndex
中的属性Form.Shown
事件。例如:
Set the
ListBox.SelectedIndex
property in theForm.Shown
event.For example:
将以下代码放入
Form.Loaded
事件中:Put following code in
Form.Loaded
event: