gpt4 book ai didi

c# - ComboBox SelectedItem 绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 10:31:50 26 4
gpt4 key购买 nike

我的 中有一个 ComboBox查看 :

<ComboBox Name="comboBox1" ItemsSource="{Binding MandantList}" SelectedItem="{Binding CurrentMandant, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Firma}"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>

这是我的 型号 :
public class MandantListItem : INotifyPropertyChanged
{
public MandantListItem() { }

string _Firma;
bool _IsChecked;

public string Firma
{
get { return _Firma; }
set { _Firma = value; }
}
public bool IsChecked
{
get
{
return _IsChecked;
}
set
{
_IsChecked = value;
OnPropertyChanged(nameof(IsChecked));
}
}

public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}

这是我的 查看型号 :
public class MaViewModel : INotifyPropertyChanged
{
public ObservableCollection<MandantListItem> MandantList { get { return _MandantList; } }
public ObservableCollection<MandantListItem> _MandantList = new ObservableCollection<MandantListItem>();

private MandantListItem _CurrentMandant;
public MandantListItem CurrentMandant
{
get { return _CurrentMandant; }
set
{
if (value != _CurrentMandant)
{
_CurrentMandant = value;
OnPropertyChanged("CurrentMandant");
}
}
}

public event PropertyChangedEventHandler PropertyChanged;

protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}

如何填充组合框:
public zTiredV2.ViewModel.MaViewModel MAList = new zTiredV2.ViewModel.MaViewModel();
this.comboBox1.ItemsSource = MAList.MandantList;
MAList.MandantList.Add(new zTiredV2.Model.MandantListItem { Firma = "A", Homepage = "a.com", IsChecked = false });
MAList.MandantList.Add(new zTiredV2.Model.MandantListItem { Firma = "B", Homepage = "b.com", IsChecked = false });

但是我的项目没有更新......也通过 IsChecked 尝试过,但也没有成功......当我遍历 MAList 时,IsChecked 总是错误的。以及如何将 TextBlock 绑定(bind)到选定的 Firma?

MVVM 很难,但我喜欢它。

最佳答案

您应该设置 DataContextComboBox到您的 View 模型的实例。否则绑定(bind)将不起作用:

this.comboBox1.DataContext = MAList;

另请注意 _MandantList您的属性(property)的支持字段不应该是公开的。事实上,你根本不需要它:
public ObservableCollection<MandantListItem> MandantList { get; } = new ObservableCollection<MandantListItem>();

设置 DataContext应该会导致 CurrentMandant当您在 ComboBox 中选择一个项目时要设置的属性.它不会设置 IsChecked属性(property)虽然。

关于c# - ComboBox SelectedItem 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56807954/

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