-4

我已经为菜单项创建了类,当有人从组合框中选择比萨饼并选择浇头时,我无法弄清楚如何获得价格。我正在从数据库中获取比萨饼价格和最高价格。这是我的披萨课

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;


namespace ItalianoLIB.BLL
{

   public class Pizza
    {

       public string pizzaName { get; set; }
       public string toppingName { get; set; }
       public double toppingPrice { get; set; }
       public double pizzaPrice { get; set; }



    }
}


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;




namespace ItalianoWIN.PLL
{

    public partial class PizzaMenu : Form 
    {
        public string newPizzaName { get; set; }
        public string newToppingName { get; set; }
        public double newToppingPrice { get; set; }
        public double newPizzaPrice { get; set; }

        public PizzaMenu()
        {  

            InitializeComponent();
        }

        private void Pizza_Load(object sender, EventArgs e)
        {

            //new connection from the DButils class
            SqlConnection con = new SqlConnection(ItalianoLIB.DLL.DButils.CONSTR);
            con.Open();

            //fill Pizza type combo box
            SqlDataAdapter da = new SqlDataAdapter("select * from pizza", con);
            DataTable dt = new DataTable();
            da.Fill(dt);



            for (int i = 0; i < dt.Rows.Count; i++)
            {
             cboPizzaType.Items.Add(dt.Rows[i]["PizzaType"]);
            }



            //fill toppings listbox
            SqlDataAdapter da2 = new SqlDataAdapter("select * from Topping",con);
            DataTable dt2 = new DataTable();
            da2.Fill(dt2);

            for (int i = 0; i < dt2.Rows.Count; i++)
            {
                lstToppings.Items.Add(dt2.Rows[i]["ToppingName"]);
            }



            con.Close();


        }

        private void cboPizzaType_SelectedIndexChanged(object sender, EventArgs e)
        {


        }


        private void lstToppings_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void bnPizOrd_Click(object sender, EventArgs e)
        {
            newPizzaName = cboPizzaType.Text.ToString();



            //Brings the user back to the main form
            this.DialogResult = DialogResult.OK;
        }

        private void bnAddTop_Click(object sender, EventArgs e)
        {


            object obj = lstToppings.SelectedItem;
            lstSelTop.Items.Add(obj);
            lstToppings.Items.Remove(obj); 

        }

        private void bnDelTop_Click(object sender, EventArgs e)
        {
            object obj = lstSelTop.SelectedItem;
            lstToppings.Items.Add(obj);
            lstSelTop.Items.Remove(obj);

        }
    }
}
4

2 回答 2

4

有很多方法可以做到这一点这里有四种

  1. 既然你有一个 DataTable 已经把它变成一个私有字段。然后在 ComboBox.SelectedIndex 更改上,您可以检索所选值,然后使用DataTable.SelectorDataTable.FindLinq To DataSet检索价格值。

  2. 您可以只设置组合框的DataSourceDisplayMemberValueMember属性。DataSource 是数据表,显示成员是名称,值成员是价格。任何时候只要你想要价格就可以使用ComboBox.SelectedValue(在这种情况下不需要保留一个私有字段,因为数据源会保留它)

  3. 您也可以使用上述两者的组合。例如,您可以为值成员使用 ID,您可以使用 #1 中描述的技术进行查找。

  4. 仍然设置数据源,使用任何你想要的值成员,并使用DataManager组合框的,并在需要时访问所选项目的整行

顺便说一句,许多人不喜欢使用 DataTables,而是更喜欢使用自定义类的集合。以上所有内容都适用于普通集合,除了您将仅使用 Linq 或 IEnumerable 方法而不是 linq to dataset 或 datatable 方法

于 2012-04-24T21:45:56.777 回答
0

你想这样做吗?

private void cboPizzaType_SelectedIndexChanged(object sender, EventArgs e)         
{           
SqlConnection con = new SqlConnection(ItalianoLIB.DLL.DButils.CONSTR);             
con.Open();              
SqlDataAdapter da = new SqlDataAdapter("select PizzaPrice from pizza WHERE PizzaType='" + cboPizzaType.Text + "'", con);             
DataTable dt = new DataTable();             
da.Fill(dt);  
con.Close();           
var oPrice = dt.Rows[0][0];
this.pizzaPrice = (double)oPrice;
}          
于 2012-04-24T21:41:49.713 回答