我正在创建一个应用程序,用户可以从比萨饼和饮料中进行选择。我使用数组列表从使用复选框的表单中选择比萨饼;如果选中所有 5 个复选框然后从数组中获取所有数据,我需要做什么
这是课堂上的代码
namespace order
{
class Menu
{
string[] pizza = {"Cheese and Ham", "Ham and Pineapple", "Vegetarian", "MeatFeast", "Seafood" };
double[] price = {3.50, 4.20, 5.20, 5.80, 5.60 };
public string GetMenuItem(int select)
{
string choice = pizza[select];
return choice;
}
这是表格代码
namespace order
{
public partial class Form1 : Form
{
Menu menuMaker = new Menu();
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (checkBox1.Checked)
{
label1.Text = menuMaker.GetMenuItem(0);
}
}
}
如果选中一个,则表单会显示该结果,但如果我想选中所有复选框,则需要将它们全部显示。