如何在代码隐藏中更改组合框上的选定项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在代码隐藏中更改组合框上的选定项相关的知识,希望对你有一定的参考价值。
Example to change the selected item in a ComboBox, in code behind. For VB.Net
Dim value as string = "1" comboname.FindItemByValue(value).Selected = True 'This select the first element of the combo if the DefaultValue is numeric, in other case, change the value var 'value'.
以上是关于如何在代码隐藏中更改组合框上的选定项的主要内容,如果未能解决你的问题,请参考以下文章
如何同步组合框和文本字段值。即如何从存储在文本字段中加载不同的值,而我正在更改组合框上的值