我正在尝试实现一个简单的应用程序:我在ViewModel中有一个对象列表,我希望在带有Datatemplate的ListView中显示。一切都适用于绑定,直到我添加一个在列表中添加元素的按钮。当我这样做时,ListView不会更新。但是,如果我尝试向下滚动列表,整个程序将停止并显示以下消息:
“应用程序处于中断模式,您的应用已进入休息状态, 但是没有代码可以显示,因为所有线程都在执行 外部代码(通常是系统或框架代码)。“
这是代码:
型号类:
namespace WpfTest
{
class Model
{
public string Value1 { get; set; }
public int Value2 { get; set; }
public bool Value3 { get; set; }
public Model()
{
Value1 = "abc";
Value2 = 3;
Value3 = true;
}
}
}
ViewModel类:
namespace WpfTest
{
class ViewModel : INotifyPropertyChanged
{
public List<Model> _model;
private ICommand _addElement;
public ViewModel()
{
_addElement = new RelayCommand(Add);
_model = new List<Model>()
{
new Model(),
new Model()
};
}
public List<Model> ModelList
{
get => _model;
set => _model = value;
}
public ICommand AddElement
{
get => _addElement;
set => _addElement = value;
}
public void Add(object o)
{
_model.Add(new Model());
OnPropertyChanged("ModelList");
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string message)
{
if(PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(message));
}
}
}
}
XAML视图:
<Window x:Class="WpfTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfTest"
xmlns:Mod="clr-namespace:WpfTest"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<DataTemplate DataType="{x:Type Mod:Model}">
<StackPanel Orientation="Horizontal">
<Label Content="{Binding Value1}"></Label>
<Label Content="{Binding Value2}"></Label>
<Label Content="{Binding Value3}"></Label>
</StackPanel>
</DataTemplate>
</Window.Resources>
<StackPanel>
<Button Command="{Binding AddElement}">Add</Button>
<ListView ItemsSource="{Binding ModelList}"></ListView>
</StackPanel>
</Window>
我使用的是最新版本的Visual Studio Community 2017
提前感谢您的帮助
答案 0 :(得分:2)
将List<Model>
替换为ObservableCollection<Model>
。当列表的内容发生变化时,这将正确地通知任何绑定的UI元素。
如果要在UI中重新选择单个模型对象的更新,则模型类必须实现INotifyPropertyChanged
,并相应地更新属性定义。