Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はC#アプリケーションに取り組んでいます。というラベルの付いたコンボボックスがありますTown (translated in English)。ここでそれを見ることができます: . フォームが読み込まれると、項目コレクションの最初の項目が表示されるのではなく、常に空白になります (そうあるべきだと思います)。私に何ができる?それのどこに問題がありますか?
Town (translated in English)
PSそのアイテムはデータバインディングシステムからのものではなく、アイテムの単なるコレクションです。
フォームまたは別のイベント セットの次の行の読み込み中:
TownComboBox.SelectedIndex = 0; //TownComboBox being the name of the control
if(myComboBox.Items > 0) myCombobox.SelectedIndex(0);