C# コンボボックスを学ぶ
参考
環境
・VisualStudio2022
・C#
製作
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ComboBoxFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { comboBox1.SelectedIndex = 1; label1.Text = string.Empty; } private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { string selectedItem = comboBox1.SelectedItem as string; label1.Text = selectedItem + "選択されました"; } } }
参考サイト通りではあるけれど、
・アイテムリスト
・初期値
・選択時 or 変更時の処理
Form1_LoadはフォームのLoadに対して設定しないと動かない。