我正在使用这个:Databinding an enum property to a ComboBox in WPF databinding for my comboboxes。我无法以编程方式设置组合框的值。绑定后,我无法设置 SelectedItem、SelectedValue 或 Text。
必须有办法做到这一点?任何帮助表示赞赏。
澄清一下,我有一个绑定到具有所有 50 个状态的枚举的组合框。我有一个与组合框绑定到的枚举类型相同的状态值。我想将组合框值设置为我的状态值。
如果将 ComboBox 的 SelectedItem 绑定到基础类,则应该能够通过更改该类来更改绑定。
例如,假设您的枚举名为“Country”,并且您有一个名为“Person”的类,而该人有一个名为“CountryOfOrigin”的属性,您希望将其绑定到 ComboBox。你可以这样做:
XAML 文件:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestingWPF"
x:Class="TestingWPF.TestWindow">
<Window.Resources>
<ObjectDataProvider MethodName="GetValues"
ObjectType="{x:Type local:Country}"
x:Key="Countries">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="local:Country" />
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
</Window.Resources>
<StackPanel>
<ComboBox x:Name="comboBox"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="100" Margin="10"
ItemsSource="{Binding Source={StaticResource Countries}}"
SelectedItem="{Binding Path=CountryOfOrigin, Mode=TwoWay}"/>
<Button HorizontalAlignment="Center" Content="Change Country to Mexico" Margin="10" Click="Button_Click"/>
</StackPanel>
</Window>
代码隐藏:
public partial class TestWindow : Window
{
Person p;
public TestWindow()
{
InitializeComponent();
p = new Person();
p.CountryOfOrigin = Country.Canada;
DataContext = p;
}
private void Button_Click(object sender, RoutedEventArgs e)
{
p.CountryOfOrigin = Country.Mexico;
}
}
public enum Country
{
Canada,
UnitedStates,
Mexico,
Brazil,
}
public class Person : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private Country _countryOfOrigin;
public Country CountryOfOrigin
{
get
{
return _countryOfOrigin;
}
set
{
if (_countryOfOrigin != value)
{
_countryOfOrigin = value;
PropertyChanged(this, new PropertyChangedEventArgs("CountryOfOrigin"));
}
}
}
}
我发现这篇文章在处理绑定到 ComboBoxes 的枚举时非常有用,还有一些示例说明了如何组织转换以使用其属性值显示枚举。
因此用户可以看到 fe ">" 符号而不是名为 Greater