将标志枚举绑定到控件并返回枚举属性
我有一个telerik RadAutoCompleteBox来显示/选择枚举标志和转换器的绑定。 但它只适用于绑定到目标而不是回到属性。 ConvertBack方法只是不被调用。
WPF:
<telerik:RadAutoCompleteBox x:Name="RadAutoCompleteBox" FilteringBehavior="{StaticResource EmptyTextFilteringBehavior}" ItemsSource="{Binding Source={local:EnumBindingSource {x:Type model:FlagEnum}}}" SelectedItems="{Binding Entity.FlagEnum, Mode=TwoWay, Converter={StaticResource ListToFlagEnumConverter}}" />
转换器:
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value != null)
{
Type type = value.GetType();
if (typeof(Enum).IsInstanceOfType(value))
{
string concatenatedEnum = ((Enum)value).ToString();
ObservableCollection<Enum> enumList = new ObservableCollection<Enum>();
foreach (string item in concatenatedEnum.Split(','))
{
enumList.Add((Enum)Enum.Parse(type, item));
}
return enumList;
}
}
return Binding.DoNothing;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
ObservableCollection<Enum> enumList = (ObservableCollection<Enum>)value;
string enumString = String.Join<object>(",", enumList);
return Enum.Parse(targetType, enumString);
}
编辑:到目前为止,我尝试过
使用SelectedItem [TowWay]和SelectedItems [OneWay]:现在ConvertBack被调用,但没有列表将被排除,并且枚举输入未正确显示。
SelectedItem [TowWay]和SelectedItems [TowWay]:ConvertBack被调用并失败(转换异常被抛出,但目标类型是正确的类型)。
我用混合行为解决了它。 所有的转换器逻辑都在那里完成,我有更多的可能性。
<i:Interaction.Behaviors>
<behavior:EnumFlagsBehavior EnumValue="{Binding CommunicationSystemEntity.TlsVersion, Mode=TwoWay}" NoneValue="{x:Static model:TlsVersion.None}" AllValue="{x:Static model:TlsVersion.All}" />
</i:Interaction.Behaviors>
链接地址: http://www.djcxy.com/p/44681.html
上一篇: Bind flag enums to a control and back to the enum property