0

ラベルにアイテムを追加するボタンを作成する必要があります。これは辞書アイテムです

        var menu = new Dictionary<string, double>();
        //names of the items the user is buying and the count
        var items = new Dictionary<string, int>();
        menu.Add("soda", 0.5);
        menu.Add("water", 0.5);
        menu.Add("juice", 0.5);
        menu.Add("rice", 0.5);
        menu.Add("soup", 0.5);
        menu.Add("chicken", 0.5);
        menu.Add("steak", 0.5);
        menu.Add("beef", 0.5);

アイテムをラベルに追加するボタンの作成方法

4

1 に答える 1

1
foreach (var m in menu)
{
    label1.Text += m.Key + ":" + m.Value.ToString() + Environment.NewLine;
}
于 2013-01-13T07:31:58.637 に答える