2008年4月24日木曜日

VC++2005/2008 コンボボックスの使用方法

VC++2005/2008 コンボボックスの使用方法
コンボボックスはテキストボックスとリストボックスを組合わせた便利なコンポーネントです。おもな使用方法を示します。

array<System::String^>^ arr = gcnew array<System::String^>{"bbb","ccc"}; // 配列宣言

comboBox1->Items->Clear(); // コンボボックスのアイテムクリア
comboBox1->Items->Add( "aaa" ); // コンボボックスにアイテム1つ追加
comboBox1->Items->AddRange( arr ); // コンボボックスにアイテムまとめて追加
comboBox1->Text = String::Format("{0} : {1}",comboBox1->Items->Count , comboBox1->Items[0] ); // コンボボックスのテキスト表示

0 件のコメント: