简体   繁体   English

在消息框C#中显示所有列表视图项

[英]Display all listview items in messagebox c#

I have a listview with subitems. 我有一个带子项的列表视图。 The first 5 sub items are the name, items, total price, address and telephone. 前5个子项目是名称,项目,总价,地址和电话。

The rest of the subitems contain the past list that I displayed for my order. 其余子项目包含我为订单显示的过去列表。

It is a pizzeria program and I want it to be able to get the customers info and order. 这是一个比萨店计划,我希望它能够获得客户的信息和订单。

I can get the info but can't get the rest of the order. 我可以获取信息,但无法获取其余订单。

I'm wondering how I can display the rest of my order if that makes sense. 我想知道如何才能显示剩余的订单。

Example Order: 示例订单:

Name: Claud
Items: 3
Total: 10.99
Address: (Blank)
Telephone: (Blank)
Order: Small Pizza
       -Bacon
       BreadSticks

Right now my messagebox looks like this: 现在我的消息框看起来像这样:

Name: Claud
Items: 3
Total: 10.99
Address: (Blank)
Telephone: (Blank)
Order: Small Pizza

So I just want it to display the -Bacon and BreadSticks. 所以我只希望它显示-Bacon和BreadSticks。

Source Code: 源代码:

  private void CustomerInfo_Click(object sender, EventArgs e)
    {
        ListViewItem customers = new ListViewItem(fullName.Text);
        customers.SubItems.Add(totalcount.ToString());
        customers.SubItems.Add(total.ToString());
        customers.SubItems.Add(Address.Text);
        customers.SubItems.Add(telephone.Text);
        for (int i = 0; i < OrderlistBox.Items.Count; i++)
        {
            customers.SubItems.Add(OrderlistBox.Items[i].ToString());
        }
        Customers.Items.Add(customers);

        MessageBox.Show("Sent order for " + fullName.Text.ToString() + " to screen.");
        //CLEAR ALL FIELDS
        OrderlistBox.Items.Clear();
        fullName.Text = "";
        Address.Text = "";
        telephone.Text = "";
        totalDue.Text = "";
        totalItems.Text = "";
    }

    private void customerInformationToolStripMenuItem_Click(object sender, EventArgs e)
    {
        if (Customers.SelectedItems.Count != 0)
        {
            MessageBox.Show("Name: " + Customers.SelectedItems[0].SubItems[0].Text + "\n" +
                            "Adress: " + Customers.SelectedItems[0].SubItems[3].Text + "\n" +
                            "Telephone: " + Customers.SelectedItems[0].SubItems[4].Text + "\n" +
                            "Order: " +Customers.SelectedItems[0].SubItems[5].Text);
        }
    }

You can create custom message box by creating new winform that act as your messagebox. 您可以通过创建充当消息框的新winform来创建自定义消息框。 Create public property on it to pass the value of your selecteditems something like: 在其上创建公共属性,以传递所选项目的值,例如:

Then on your form : 然后在您的表格上:

 private void customerInformationToolStripMenuItem_Click(object sender, EventArgs e)
    {
        if (Customers.SelectedItems.Count != 0)
        {
            var myformmessagedialog = new MyFormMessageDialog
            {

name = Customers.SelectedItems[0].SubItems[0].Text,
adress=Customers.SelectedItems[0].SubItems[3].Text,
telephone=Customers.SelectedItems[0].SubItems[4].Text
              };
              myformmessagedialog.ShowDialog();
        }
    }

Your MessageBoxDialogform: 您的MessageBoxDialogform:

MyFormMessageDialog : Form
{
  public MyFormMessageDialog()
    {
        InitializeComponent();
    }
    public string name;
    public string adress;
    public string telephone;

     private void MyFormMessageDialog_Load(object sender, EventArgs e)
    {

        lblName.Text = name;
        lbladdress.Text = adress;
        telephone.Text telephone;

       //if you are saving ado.net stuff 
       //query username where name = name then bind it on a list box or a combo box 
       var Orderdata = //you retrieve info via DataTable;
       lstOder.Items.Clear();
       foreach (DataRow data in Orderdata.Rows)
            {
                var lvi = new ListViewItem(data["Order"].ToString());
                // Add the list items to the ListView
                lstlstOder.Items.Add(lvi);
       }


    }
 }

Hope this help you. 希望这对您有所帮助。 Regards 问候

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM