值转换器 - 在ConvertBack()方法中访问Convert()变量?

时间:2011-06-17 18:15:18

标签: c# wpf valueconverter

我有一个转换器,它有几个输入变量(一个对象和一个TextBox),然后返回TextBox.Text String属性。

我遇到的问题是在我的转换器的ConvertBack()方法中。我无法将任何更新链接回对象,因为我得到的只是一个字符串(文本框的文本)。有什么方法可以访问一些(如果不是全部)Convert()个变量吗?或者至少知道哪个文本框正在调用ConvertBack()

这是我的ItemsControl代码:

<ItemsControl x:Name="ItemsControlGrid" ItemsSource="{Binding Path=ProjectOrganLocation.LesionTypes, Source={StaticResource Locator}}" >
    <ItemsControl.ItemsPanel>
         <ItemsPanelTemplate>
              <StackPanel Orientation="Horizontal" />
         </ItemsPanelTemplate>
     </ItemsControl.ItemsPanel>
     <ItemsControl.ItemTemplate>
         <DataTemplate>
              <TextBox Width="75" TextAlignment="Center" >
                   <TextBox.Text>
                         <MultiBinding Converter="{StaticResource LesionTypeConverter}"  >
                              <Binding RelativeSource="{RelativeSource AncestorType={x:Type TreeViewItem}}" Path="DataContext.OrganLocation"/>
                              <Binding RelativeSource="{RelativeSource Self}" Path="." />
                          </MultiBinding>
                    </TextBox.Text>
                </TextBox>
            </DataTemplate>
      </ItemsControl.ItemTemplate>
 </ItemsControl>

这是我的转换器的片段:

List<CategoryCode> Lesions = organ.getLesionTypes;

    if (organ.OrganDisplayName == organ.CurrentOrgan)
       organ.Count++;
    else
    {
       organ.Count = 0;
       organ.CurrentOrgan = organ.OrganDisplayName;
    }
return organ.Labels[organ.Count].LabelPrefix;

2 个答案:

答案 0 :(得分:4)

最好的办法是在转换器类中添加一个私有属性,并在转换期间存储您的值,以便ConvertBack可以访问它们。您需要为每个绑定使用转换器的单独实例。

你想要完成什么?可能有一种比转换器更好的方法

答案 1 :(得分:0)

如果您在代码中分配了绑定,则可以向转换器添加构造函数,该构造函数将发送TextBox(或任何其他数据)作为参数并记录它。