所以我有组合框,其中包含一些项目,并且其 SelectedIndex 与 TwoWay 绑定,其属性类型为 MyTypeEnum 这个想法是它的选定索引值可以由枚举为int 转换器设置,并且当用户更改组合框本身的选择时,新的 selectedIndex 应该更新其绑定到的值。 OneWay 正常工作,即:从属性到SelectedIndex,但不能正常工作 reverse ,因此对于断点,我已确认绑定属性的 Set 方法更改组合框的选择时不执行,但是转换器的 ConvertBack 方法确实执行,就像应该执行的那样。
我准备了一个简单的代码仓库来重现该问题:https://github.com/touseefbsb/ComboBoxToEnumBug
MainPage.xaml
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Page.Resources>
<local:IdToIndexConverter x:Key="IdToIndexConverter"/>
</Page.Resources>
<Grid x:DefaultBindMode="TwoWay">
<ComboBox SelectedIndex="{x:Bind ViewModel.MyTypeEnum, Converter={StaticResource IdToIndexConverter}}" >
<ComboBoxItem>item 1</ComboBoxItem>
<ComboBoxItem>item 2</ComboBoxItem>
<ComboBoxItem>item 3</ComboBoxItem>
</ComboBox>
</Grid>
MainViewModel
public class MainViewModel : Observable
{
private MyTypeEnum _myTypeEnum = MyTypeEnum.Type1;
public MyTypeEnum MyTypeEnum
{
get => _myTypeEnum;
set => Set(ref _myTypeEnum, value);
}
}
可观察
public class Observable : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected void Set<T>(ref T storage, T value, [CallerMemberName]string propertyName = null)
{
if (Equals(storage, value))
{
return;
}
storage = value;
OnPropertyChanged(propertyName);
}
protected void OnPropertyChanged(string propertyName) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
MyTypeEnum
//使用字节作为父级,以便我可以从1而不是0开始计数
public enum MyTypeEnum : byte
{
Type1 = 1,
Type2,
Type3
}
转换器
public class IdToIndexConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, string language) => System.Convert.ToInt32(value) - 1;
public object ConvertBack(object value, Type targetType, object parameter, string language) => ((int)value) + 1;
}
答案 0 :(得分:0)
我已经确认,当我更改组合框的选择时,绑定属性的Set方法不会执行,但是转换器的ConvertBack方法会执行,就像应该的那样。
您的ConvertBack
方法返回一个int
,但它应该返回一个MyTypeEnum
。
视图模型的source属性不能设置为int
,而只能设置为MyTypeEnum
。