1

そこで、Windows フォーム アプリケーションで思いついたこのプログラムのアイデアに取り組んでいます。

1981年から2013年をリストするコンボボックスがあります。その横には、単純な Enter ボタンがあります。

メッセージ ボックスに表示される各年に個別のテキスト行を割り当てられるようにしたかったのです。

ユーザーが 1981 を選択して Enter をクリックすると、メッセージ ボックスに "In the year of 1981.." と表示されますが、1982 を選択すると、メッセージ ボックスに "In the year of 1982.." と表示されます。ただし、別のテキスト行を別の年に割り当てる方法がわかりません。誰にも提案はありますか?

4

1 に答える 1

0

First set the DropDownStyle of your ComboBox to DropDownList.Now assuming that you already have years(item) available in your ComboBox's collection,place the code below in the EnterButton's click event;

        object item = ComboboxYears.SelectedItem.ToString();
        MessageBox.Show("In the year of" + item.ToString()+"...");

That should do the job.

于 2013-08-29T20:45:42.220 に答える