在加载时调用IValueConverter的ConvertBack

时间:2011-06-22 10:20:21

标签: c# wpf xaml ivalueconverter

我将组合框(即列表框项目模板的一部分)绑定到枚举,所选项目绑定到绑定到列表框的集合。
我使用转换器来实现某些逻辑。

问题是在启动时不会调用ConvertBack,但只有当我在组合框中重新选择项目时才会调用。

我需要它在启动时调用。

public enum FullEnum 
    {
       Apple,
       Banana,
       Pear
    }
<Window.Resources>
   <local:EnumConverter x:Key="enumConverter"/>

   <ObjectDataProvider x:Key="DataT"
                       MethodName="GetValues" 
                       ObjectType="{x:Type sys:Enum}">
            <ObjectDataProvider.MethodParameters>
                <x:Type TypeName="local:FullEnum" />
            </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>
</Window.Resources>
<Grid>
   <Grid.RowDefinitions>
        <RowDefinition Height="190*" />
       <RowDefinition Height="71*" />
   </Grid.RowDefinitions>
   <ListBox Name="list1" Margin="0,0,0,37">
        <ListBox.ItemTemplate>
           <DataTemplate>
             <StackPanel>
               <TextBlock Text="{Binding Path=Label}"></TextBlock>
               <ComboBox Height="23" Width="90"                                 
                         ItemsSource="{Binding Source={StaticResource DataT}}"                                                                  
                         SelectedValue="{Binding Path=Oped, Converter={StaticResource enumConverter}}">
                </ComboBox>
             </StackPanel>
          </DataTemplate>
        </ListBox.ItemTemplate>
      </ListBox>
  </Grid>
List<Item1> list = new List<Item1>();
public Window1()
{
     InitializeComponent();
     list.Add(new Item1 { Label="label1" });
     list.Add(new Item1 { Label = "label2" });
     list.Add(new Item1 {  Label = "label3" });

     list1.ItemsSource = list;

}

    public class Item1
    {
            public FullEnum Oped { get; set; }
            public string Label { get; set; }
    }

 public class EnumConverterr : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            //some code        
        }

      public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if ((int)value != 0)
            return (EnumSuperior)value;
        return (EnumSuperior)7;
    }

    }

1 个答案:

答案 0 :(得分:0)

WPF在初始化时不会调用返回转换器,因为它刚刚从数据上下文中获取了初始值。数据绑定的源和目标应具有相同的值,因此没有理由更新源。

您还没有发布转换逻辑,但转换器中必须有一些“状态”逻辑。转换器应该是无状态的(没有副作用,不可变)。所有转换都应基于转换期间未修改的值,参数和转换器属性。

如果您的转换器是无状态的,您只需要正确初始化数据源,就不再需要初始转换回来了。