C# アイスクリームのカロリー表示 | After Five President

After Five President

小さいことから大きいことまで何でも書いちゃうブログです。ふふ。

私はアイスクリームが大好きです。
食べる時はカロリーなんて気にしません。
でもこんな表を作ってみました。

if-if elseを使っておりますぞ。
この度はリストメニューを使用してみたいなぁ。
どうやるんだろか。

public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
{
textBox1.Text = "150kcal";
}
else if (radioButton2.Checked)
{
textBox1.Text = "250kcal";
}
else if (radioButton3.Checked)
{
textBox1.Text = "95kcal";
}
else if (radioButton4.Checked)
{
textBox1.Text = "100kcal";
}
else
{
textBox1.Text = "フレーバーを選択してください";
}
}


}
After Five President-カロリー表示