我有一个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被调用并失败(抛出转换异常,但目标类型是正确的类型)。
答案 0 :(得分:0)
我用混合行为解决了它。所有转换器逻辑都在那里完成,我有更多的可能性。
<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>