繁体   English   中英

WPF将ObservableCollection绑定到ComboBox

[英]WPF Binding ObservableCollection to ComboBox

我尝试绑定一个Lens Objects列表,我想在我的组合框中显示LensName属性。我的代码列表中包含对象,但组合框保持为空或该属性不显示。我已经尝试了所有已知的绑定方法我的数据没有结果。感谢您的帮助

XAML

<ComboBox  x:Name="RightbestlensCombo" ItemsSource="{Binding Source=RightBestLensList}" DisplayMemberPath="LensName" SelectedValuePath="LensTypeId" />
    <ComboBox x:Name="LeftbestlensCombo"  ItemsSource="{Binding Source=LefttBestLensList}" DisplayMemberPath="LensName" SelectedValuePath="LensTypeId"  ></ComboBox>

背后的代码

      public ObservableCollection<OphtalboxIA.Lens> RightBestlensList = new ObservableCollection<OphtalboxIA.Lens>();
        public ObservableCollection<OphtalboxIA.Lens> LeftBestlensList = new ObservableCollection<OphtalboxIA.Lens>();


 if (OphtalboxIA.OphtalboxComputingModule.LeftBestLensList != null)
                {
                    if (OphtalboxIA.OphtalboxComputingModule.LeftBestLensList.Count > 0)
                    {        
                        LeftBestlensList=new ObservableCollection<OphtalboxIA.Lens>(OphtalboxIA.OphtalboxComputingModule.LeftBestLensList);
                    //LeftbestlensCombo.ItemsSource = LeftBestlensList;

                    }
                }

                if (OphtalboxIA.OphtalboxComputingModule.RightBestLensList != null)
                {
                    if (OphtalboxIA.OphtalboxComputingModule.RightBestLensList.Count > 0)
                    {
                         RightBestlensList=new ObservableCollection<OphtalboxIA.Lens>(OphtalboxIA.OphtalboxComputingModule.RightBestLensList);
                       //RightbestlensCombo.ItemsSource = RightBestlensList;

                    }
                }

我班的镜头

 [XmlInclude(typeof(Lens))]
    public class Lens{

        public String LensName;
        public String LensType;
        public String LensTypeTrial;
        public float Diameter;
        public float Radius;
        public float Sphere;
        public float Cylinder;
        public int Axis;
        public String Addition;
        public String Description;
        public int isRX;
        public int isOphtalBox;
        public int priorityOrder;
        public int LensFrequencyId;
        public string LensFrequencyName;
        public int LensTypeId;
        public int LensMaterialId;
        }

您需要属性,而不是字段。 这些是字段:

public ObservableCollection<OphtalboxIA.Lens> RightBestlensList = new ObservableCollection<OphtalboxIA.Lens>();
public ObservableCollection<OphtalboxIA.Lens> LeftBestlensList = new ObservableCollection<OphtalboxIA.Lens>();

作为属性,它们将如下所示:

private readonly ObservableCollection<OphtalboxIA.Lens> _rightList = new ObservableCollection<OphtalboxIA.Lens>();
private readonly ObservableCollection<OphtalboxIA.Lens> _leftList = new ObservableCollection<OphtalboxIA.Lens>();

public ObservableCollection<OphtalboxIA.Lens> RightBestlensList { get { return _rightList; }}
public ObservableCollection<OphtalboxIA.Lens> LeftBestlensList { get { return _leftList; }}

此外,绑定中有一个错字: Source=LefttBestLensList (一个额外的“ t”),并且该框是错误的(“ ... Lens ...”与“ ... lens ...”)。

RightBestlensListLeftBestlensList必须在ViewModel类中,而不能在代码RightBestlensList ,并且它们必须是属性。

您必须尝试下面提到的代码。

您必须在ViewModel中声明ObservableCollection,例如

 private ObservableCollection<Lens> _RightBestLensList = new ObservableCollection<Lens>();

    public ObservableCollection<Lens> RightBestLensList
    {
        get { return _RightBestLensList; }
        set { _RightBestLensList = value; RaisePropertyChanged("RightBestLensList"); }
    }

您的镜头课应该是

[XmlInclude(typeof(Lens))]
public class Lens
{
    public string LensName { get; set; }
    public string  LensType { get; set; }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM