5

プログラムの開始時に、コンボボックスが常に空であることを認識しています。値を選択するには、横の矢印をクリックする必要があります。プログラムの開始時にコンボボックスに値が表示されるようにするにはどうすればよいでしょうか?

4

5 に答える 5

7

設定できるプロパティは次の4つです。

// Gets or sets the index specifying the currently selected item.
comboBox1.SelectedIndex = someIndex;  //int

// Gets or sets currently selected item in the ComboBox.
comboBox1.SelectedItem = someItem; // object

// Gets or sets the text that is selected in the editable portion of a ComboBox.
comboBox1.SelectedText = someItemText; // string

// Gets or sets the value of the member property specified by the ValueMember property. 
comboBox1.SelectedValue = someValue; // object

MSDNからの直接のコメント行:http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.aspx

于 2012-07-24T10:46:16.853 に答える
4

コンボ ボックスがあり、そのデータ ソースを設定する場合は、次のようにします。

 string[] items = new string[]{"Ram","Shyam"};
    comboBox1.DataSource = items;
    comboBox1.SelectedIndex = 0;

したがって、SelectedIndex最初のインデックスに設定してみてください。

于 2012-07-24T10:49:36.760 に答える
0

このコードを試してください:

comboBox1.Items.Add("Test");
于 2012-07-24T10:43:55.593 に答える