两个Combo box组合框控件关联xml中的数据

前端之家收集整理的这篇文章主要介绍了两个Combo box组合框控件关联xml中的数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

仅为初学者提供。

1、在xml文件中,有如下关系:

  1. <Shops>
  2. <Shop NO="0" Name="山东省">
  3. <Units>
  4. <Unit NO="0">济南</Unit>
  5. <Unit NO="1">青岛</Unit>
  6. <Unit NO="2">潍坊</Unit>
  7. <Unit NO="3">烟台</Unit>
  8. </Units>
  9. </Shop>
  10. <Shop NO="1" Name="湖南省">
  11. <Units>
  12. <Unit NO="0">长沙</Unit>
  13. <Unit NO="1">张家界</Unit>
  14. <Unit NO="2">益阳</Unit>
  15. </Units>
  16. </Shop>
  17. </Shops>
2、在初始化函数中,添加如下代码
  1. 	xml.FindElem(_T("Shops"));
  2. 	xml.IntoElem();	
  3. 	while(xml.FindElem())
  4. 	{
  5. 		((CComboBox*)GetDlgItem(IDC_SHOP))->AddString(xml.GetAttrib(_T("Name")));
  6. 	}
  7. 	((CComboBox*)GetDlgItem(IDC_SHOP))->SetCurSel(0);
  8. 	xml.OutOfElem();
  9. 	xml.FindElem(_T("Shops"));
  10. 	xml.IntoElem();
  11. 	xml.ResetMainPos();
  12.         xml.FindElem();
  13. 	xml.IntoElem();
  14. 	xml.FindElem(_T("Units"));
  15. 	xml.IntoElem();	
  16. 	while(xml.FindElem())
  17. 	{
  18. 		((CComboBox*)GetDlgItem(IDC_UNIT))->AddString(xml.GetData());
  19. 	}
  20. 	((CComboBox*)GetDlgItem(IDC_UNIT))->SetCurSel(0);
  21. 	xml.OutOfElem();
  22. 	xml.OutOfElem();
  23. 	xml.OutOfElem();

3、然后在第一个组合框控件的消息响应函数添加如下代码,可以使第一个改变的同时,第二个对应的改变:
  1. void CDlgUnit::OnSelchangeShop()
  2. {
  3. // TODO: Add your control notification handler code here
  4. ((CComboBox*)GetDlgItem(IDC_UNIT))->ResetContent();
  5.  
  6. CString strShop;
  7. int i=((CComboBox*)GetDlgItem(IDC_SHOP))->GetCurSel();
  8. ((CComboBox*)GetDlgItem(IDC_SHOP))->GetLBText(i,strShop);
  9. CMarkup xml;//CMarkup是有关xml文件的解读,网上有文件,可以直接使用。
  10. xml.Load(GetCurDir()+_T("123.INI"));//123.INI是xml文件名称
  11. xml.ResetPos();
  12. xml.FindChildElem();
  13. xml.IntoElem();
  14.  
  15. xml.FindElem(_T("Shops"));
  16. xml.IntoElem();
  17. while(xml.FindElem()){
  18. if(xml.GetAttrib(_T("Name"))==strShop)
  19. {
  20. xml.IntoElem();
  21. xml.FindElem(_T("Units"));
  22. xml.IntoElem();
  23. while(xml.FindElem()){
  24. ((CComboBox*)GetDlgItem(IDC_UNIT))->AddString(xml.GetData());
  25. }
  26. ((CComboBox*)GetDlgItem(IDC_UNIT))->SetCurSel(0);
  27. break;
  28. }
  29. }
  30. }
以上仅供参考。

猜你在找的XML相关文章