WinForm中ComboBox绑定数据的用法

           DataTable table= BLLPackageCategory.SelectType();
           comboBox1.ValueMember = "Id";
           comboBox1.DisplayMember = "Name";
           comboBox1.DataSource = table.DefaultView;

原文地址:https://www.cnblogs.com/lzh_527/p/1640659.html