WPF ComBox绑定数据

1、xmal文件中添加  DisplayMemberPath、SelectedValuePath属性

DisplayMemberPath="Name" SelectedValuePath="ID" SelectionChanged="MeaType_SelectionChanged" Loaded="MeaType_Loaded"> 

2、控件绑定的内容类

WPF ComBox绑定数据_第1张图片

         public class MeaType
        {
          public int ID{get;set;}
          public string Name{get; set;}
        }

3.代码中添加需要绑定的数据

WPF ComBox绑定数据_第2张图片

                List list = new List();
                list.Add(new MeaType { ID = 1,Name = "S11" });
                list.Add(new MeaType { ID = 2, Name = "S21" });
                list.Add(new MeaType { ID = 3, Name = "S12" });
                list.Add(new MeaType { ID = 4, Name = "S22" });
                MeaType.ItemsSource = list;  

4、代码中更改绑定

你可能感兴趣的:(C#,WPF)