我有一个应用程序,它根据从另一个组合框中选择的值更新组合框.Eg状态列表将根据从“country”组合框中选择的国家/地区填充组合框。状态组合框的数据源是基于数据集的在MySQL数据库上。问题是,如果首先选择一个国家/地区,则状态组合框加载正常,但如果我选择另一个国家/地区,则状态组合框将填充:
System.Data.DataViewManagerListItemTypeDescriptor
我研究并发现问题与我无法更新组合框的数据源有关,但我必须这样做,因为这些值存储在不同的表中,并且需要不同的查询。那么,我如何清除数据源/解决这个问题?。
我已更新帖子以在下面添加我的代码(首先是第一个组合框的代码,根据此处选择的值填充下一个代码:
private void cboDisp1_SelectedIndexChanged(object sender, EventArgs e)
{
cboProd1.Enabled = false;
cboProd1.Invalidate();
string dispensation1;
dispensation1 = cboDisp1.SelectedValue.ToString();
if (dispensation1 == "1")
{
}
else
{ cboProd1.Enabled = true;
LoadDispensationCode(dispensation1,"1");
}
}
此代码显示填充第二个组合框的方法的一部分:
private void LoadDispensationCode(string text_id,string line_no)
{
string txt_id=text_id;
string ln_no=line_no;
//MessageBox.Show(txt_id, "Value");
txt_id = text_id;
if (txt_id == "1")
{ }
if
(txt_id == "2")
{ LoadConsultation("1","1"); }
if(txt_id=="3")
{
LoadDrug(ln_no);
}.......
此代码显示了根据对MySQL数据库的查询填充数据集的方法,并加载了组合框。
private void LoadDrug(string line_no)
{
string ln_no;
ln_no = line_no;
//MessageBox.Show(ln_no,"value of text");
if (ln_no =="1")
{
try
{
MySqlConnection connection = HopeDB.GetConnection();
String selectStatement = "Select id,code from drugs order by id";
MySqlCommand command = new MySqlCommand(selectStatement, connection);
MySqlDataAdapter adapter = new MySqlDataAdapter();
DataSet ds = new DataSet();
adapter.SelectCommand = command;
adapter.Fill(ds, "drugs");
adapter.TableMappings.Add("Table", "drugs");
cboProd1.DisplayMember = "drugs.code";
cboProd1.ValueMember = "drugs.id";
cboProd1.DataSource = ds;
connection.Close();
}
catch (Exception ex)
{ MessageBox.Show(ex.Message, ex.GetType().ToString()); }
}
}
此代码是生成另一个数据集的另一种方法。
private void LoadVaccine(string line_no)
{
string ln_no = line_no;
if (ln_no == "1")
{
try
{
MySqlConnection connection = HopeDB.GetConnection();
String selectStatement = "Select id,code from vaccines order by id";
MySqlCommand command = new MySqlCommand(selectStatement, connection);
MySqlDataAdapter adapter = new MySqlDataAdapter();
DataSet ds = new DataSet();
adapter.SelectCommand = command;
adapter.Fill(ds, "vaccines");
adapter.TableMappings.Add("Table", "vaccines");
cboProd1.DisplayMember = "vaccines.code";
cboProd1.ValueMember = "vaccines.id";
cboProd1.DataSource = ds;
//cboStateIDFNo.Enabled =false;
//cboVisitType.Enabled =false;
//cboStatus.Enabled = false;
connection.Close();
}
catch (Exception ex)
{ MessageBox.Show(ex.Message, ex.GetType().ToString()); }
}
}
如前所述,当第一个组合框更改时,我需要帮助更新组合框,使用来自不同数据集的新数据,并调用另一种方法。
答案 0 :(得分:1)
我认为您不能将ComboBox
绑定到数据集,因为您无法指定DataMember。在这种情况下,您应该将ComboBox.DataSource设置为有问题的数据表,然后设置显示/值成员:
cboProd1.DataSource = ds.Tables["drugs"];
cboProd1.DisplayMember = "code";
cboProd1.ValueMember = "id";
尝试一下,让我们知道。
答案 1 :(得分:0)
取决于您更新组合框数据源的方式。
CountryComboBox_SelectedIndexChanged(...)
{
string[] states = GetStates(CountryComboBox.SelectedItem.ToString());
StateComboBox.DataSource = states;
}
这应该有用。
答案 2 :(得分:0)
我会避免在这里直接将你的组合框绑定到数据集,而是创建一个额外的小处理层,只是为了控制你的UI。
下面的伪代码:
所以而不是
//bind directly to dataset/query
comboBox.DataSource = dsCountries;
类似
public void Load()
{
//set up combobox, bind to countries
ComboBox comboBox = new ComboBox();
comboBox.DataSource = GetCountries(ds);
comboBox.DisplayMember = "Name";
//when comboBox selection changed, load countries based on selected object
comboBox.SelectedIndexChanged += (o, s) =>
{
var countrySelected = (Country)comboBox.SelectedItem;
//populate countries based on selection
};
}
/// <summary>
/// Build a list of countries, based upon the rows in a resulting dataset
/// </summary>
/// <param name="set"></param>
/// <returns></returns>
public List<Country> GetCountries(DataSet set)
{
List<Country> result = new List<Country>();
foreach (DataRow row in set.Tables[0].Rows)
{
result.Add(new Country()
{
ID = (int)row.ItemArray[0],
Name = (string)row.ItemArray[1]
});
}
return result;
}