我正在使用WPF和MVVM模式。绑定到列表的所有组合框都可以正常工作,但我有一个使用CollectionViewSource
进行过滤的级联下拉列表。过滤工作,以及设置者(在搜索答案时,我看到另一个人有问题),但我无法设置初始值。我尝试了一些方法,但似乎都没有影响选定项目。
Viewmodel ctor和Property setter(_ticket.SelectedSubstatus在模型构造函数中设置):
public TicketViewModel()
{
_ticket = new TicketModel();
SubstatusList = CollectionViewSource.GetDefaultView(GetStatusList());
SubstatusList.Filter = (x) => { return (int)(x as Substatus).IST_MAIN_STATUS == (int)SelectedStatus.IST_STATUS_ID; };
SubstatusList.MoveCurrentTo(_ticket.SelectedSubstatus);
SelectedSubstatus = _ticket.SelectedSubstatus;
Substatus test = (Substatus)SubstatusList.CurrentItem;
}
public Substatus SelectedSubstatus
{
get { return _ticket.SelectedSubstatus; }
set
{
if (value == _ticket.SelectedSubstatus ||value == null)
return;
_ticket.SelectedSubstatus = value;
_ticket.Issue.IS_SUBSTATUS_ID = value.IST_SUBSTATUS_ID;
base.OnPropertyChanged("SelectedSubstatus");
}
}
这里是组合框XAML
<ComboBox HorizontalAlignment="Stretch" Margin="15,0,0,0"
Name="comboBox1" VerticalAlignment="Bottom"
Grid.Column="2" Grid.Row="1" FontSize="12"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding Path=SubstatusList}"
SelectedItem="{Binding Path=SelectedSubstatus, Mode=TwoWay}"
DisplayMemberPath="IST_NAME"/>
来自CollectionViewSource
的当前项在由MoveCurrentTo()设置之后为空,并且在通过test检查时为空。我做错了什么?
答案 0 :(得分:1)
默认情况下,检查对象是否等于引用,而不是值。
因此,如果_ticket.SelectedSubstatus
没有直接引用SubstatusList
中的项目,那么SelectedSubstatus
将为NULL,因为您试图将SelectedSubstatus
设置为等于在SubstatusList
要解决此问题,请覆盖.Equals()
Substatus
方法,如果对象的数据相同,则返回true。例如,
public override bool Equals(object obj)
{
if (obj == null) return false;
if (obj.GetType() != this.GetType()) return false;
return this.Id == ((SubStatus)obj).Id;
}