WPF中ComboBox使用(转发)

1、数据绑定
前台代码:

    
    

后台代码:

class ProductImg   //声明类
{
    int id;
    public int Id
    {
        get { return id; }
        set { id = value; }
    }
    string img;
    public string Img
    {
        get { return img; }
        set { img = value; }
    }
}
    ObservableCollection imgs = new ObservableCollection();   //集合,即数据源

     comboBox1.SelectedValuePath = "Id";   //程序内部维护的值
     comboBox1.DisplayMemberPath = "Img";  //显示的内容
     comboBox1.ItemsSource = imgs;  //数据源
     comboBox1.SelectedValue = 3;  //选中的值

2、在ComboBox中显示图像
代码:


    
        
            
            
        
    
    
        
            
            
        
    
    
        
            
            
        
    

转自:https://www.cnblogs.com/zhouhb/p/3418103.html

你可能感兴趣的:(WPF控件)