gpt4 book ai didi

c# - mvvm 通用应用程序为什么它没有挂起

转载 作者:行者123 更新时间:2023-12-03 10:45:05 25 4
gpt4 key购买 nike

我在共享项目中的模型

class model
{
public string title;
public string link;
public string pubDate;
public string description;
public string imageLink;
}

和我在共享项目中的 View 模型

`类 View 模型:INotifyPropertyChanged
{
公共(public) ObservableCollection _posts { 获取;放; }
    public ObservableCollection<model> posts {
get {
return _posts ;
}
set
{
_posts = value;
RaisePropertyChanged("posts");
}
}


public viewModel()
{
posts = new ObservableCollection<model>
{
new model { title="tiltle", description="description", link="link1" },
new model { title="tiltle2", description="description2", link="link1" },
new model { title="tiltle3", description="description3", link="link1" },
new model { title="tiltle4", description="description4", link="link1" },
new model { title="tiltle5", description="description5", link="link1" },
};

}

public void RaisePropertyChanged(string prop)
{
if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(prop)); }
}
public event PropertyChangedEventHandler PropertyChanged;
}`

我的 xml
<ListBox x:Name="listBoxControl" ItemsSource="{Binding}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<StackPanel>
<TextBlock Text="{Binding Path=title}" />
<TextBlock Text="{Binding Path=description}" />
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

我的 xaml.cs
public MainPage()
{
this.InitializeComponent();
this.DataContext = new viewModel();
listBoxControl.DataContext = new viewModel().posts;

}

这是我的第一个问题,我对实现 mvvm 有疑问。但是我对此很了解
当我运行时,我什么也没看到

最佳答案

一切都很好,除了您应该在 model 中使用带有 setter/getter 的属性。然后你会看到一些东西。

所以:

class model
{
public string title {get;set;}
public string link {get;set;}
//etc..
}

因为数据绑定(bind)适用于属性而不是字段。

附注:
您无需命名 ListBox或设置其 DataContext从后面的代码中,您已经设置了 DataContext您对 ViewModel 的看法,因此您可以直接绑定(bind)到您的 ItemsSouce,例如:
<ListBox ItemsSource="{Binding posts}">

即使您这样做的方式也可以正常工作。

也不要忘记执行 INotifyPropertyChanged在您的 model如果属性值在初始化后发生变化。

关于c# - mvvm 通用应用程序为什么它没有挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29446390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com