gpt4 book ai didi

c# - 无法使用 MVVM 在 WPF 中填写 ListBox

转载 作者:行者123 更新时间:2023-12-03 10:23:00 27 4
gpt4 key购买 nike

嗨,我想用可观察集合的项目填充列表框。我的 XAML 文件中有:

<catel:UserControl x:Class="Musat.Classificator.CatelMVVM.Views.StopControlView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:catel="http://catel.codeplex.com"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">

<catel:UserControl.Resources>
<CollectionViewSource Source="{Binding Something}" x:Key="cvsStops" />
</catel:UserControl.Resources>

<catel:StackGrid x:Name="LayoutRoot">
<ListBox ItemsSource="{Binding Source={StaticResource cvsStops}}" />
</catel:StackGrid>

在我的 ViewModel 中,我有:
 class StopViewModel : ViewModelBase
{
public StopViewModel()
{
ObservableCollection<String> Something = new ObservableCollection<String>();
Something.Add("A");
Something.Add("B");
Something.Add("C");
Something.Add("D");
Something.Add("E");
Something.Add("F");
}
}

但是,列表框没有填充任何数据。有什么我做错了因为我找不到它吗?

最佳答案

我们在这里有点猜测,但它会这么简单吗?您必须绑定(bind)到 DO 中的属性(使用 INotifyPropertyChanged )或依赖属性。

    private ObservableCollection<string> something = new ObservableCollection<String> { "A", "B", "C", "D", "E", "F" };
public ObservableCollection<String> Something // Must be property or DP to be bound!
{
get { return something; }
set
{
if (Equals(value, something)) return;
something = value;
RaisePropertyChanged("Something");
}
}

没有你的完整代码很难说。你是如何设置数据上下文的?为什么不直接绑定(bind)到这个属性?
<ListBox ItemsSource="{Binding Something}"/>

启动应用程序时检查您的调试输出。

干杯

斯蒂安

关于c# - 无法使用 MVVM 在 WPF 中填写 ListBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25442758/

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