0

我有一个列表框,它是数据绑定到 accdb 文件并显示一列的内容,它链接到的 dataBindingSource 也已被过滤 - 这工作正常(但可能会影响我要问的内容)。

例如,我想知道如何从所选项目的完整记录中提取一个值。列表框当前显示姓氏 - 这就是您所看到的,如何提取未显示但存在于数据绑定源中的客户名字?

这是用于填充列表框的代码:

    public frmCustomer(string Input)
    {
        InitializeComponent();
        this.customersTableAdapter.Fill(this.dSSystem.Customers);
        this.catsTableAdapter.Fill(this.dSSystem.Cats);

        // Display Customer Record
        int lvRecIdx = customersBindingSource.Find("AccRef", Input);
        customersBindingSource.Position = lvRecIdx;

        // Fetch Cats Owned
        catsBindingSource.Filter = ("CustRef = '" + Input + "'");
    }

谢谢

4

1 回答 1

0

AListBox包含两个成员:ValueMemberDisplayMember

您可以定义一个从数据库查询中填充的简单对象:

 public class SomeItem
 {
        public int Key { get; set; }
        public string DisplayText { get; set; }
        public string Column1 { get; set; }
        public string Column2 { get; set; }
        ...etc...
 }

您的实现可能看起来像这样(一些模型数据):

   var items = new List<SomeItem>();
   var item = new SomeItem();
   item.Key ="key1";
   item.DisplayText = "value1";
   item.Column1 = "col1";
   item.Column2 = "col2";
   items.Add(item);
   listBox1.DataSource = items;
   listBox1.DisplayMember = "DisplayText"; //User will see your DisplayText
   listBox1.ValueMember = "Key"; //The key which is unique and your Primary Key on your database

然后根据您选择的值,您可以查询您的项目并获取项目:

   var key = (int)listBox1.SelectedValue;
   foreach (var existingItem in items)
   {
            if (existingItem.Key == key)
            {
                //woohoo got it!
               Debug.Print(existingItem.Column1)
               Debug.Print(existingItem.Column2)
            }
   }
于 2013-07-30T17:28:40.880 回答