xml:
<fluent:SplitButton Icon="24.png" ItemsSource="{Binding TestSource}">
视图模型:
public ObservableCollection<List<TestModel>> TestSource { get; set; }
更新方法:
public void UpdateSource(ObservableCollection<List<TestModel>> newSource)
{
TestSource = newSource;
OnPropertyChanged("TestSource");
}
它第一次工作正常,但是将TestSource
属性分配给新对象时,列表显示旧列表,并且不会更新。