转换器绑定?

时间:2012-03-28 01:45:04

标签: silverlight xaml binding ivalueconverter dependencyobject

我正在尝试制作一个继承自DependencyObject的自定义转换器,但它不起作用:

转换器:

public class BindingConverter : DependencyObject , IValueConverter
{
  public object Value
  {
    get { return (object)GetValue(ValueProperty); }
    set { SetValue(ValueProperty, value); }
  }
  public static readonly DependencyProperty ValueProperty =
      DependencyProperty.Register("Value", typeof(object), typeof(BindingConverter), new PropertyMetadata(null));


  public object Convert(object value, Type targetType, object parameter, Globalization.CultureInfo culture)
  {
    Debug.Assert(Value != null); //fails
    return Value;
  }

  public object ConvertBack(object value, Type targetType, object parameter, Globalization.CultureInfo culture)
  {
    throw new NotImplementedException();
  }
}

的Xaml:

<StackPanel x:Name="this">
  <!--works-->
  <ContentControl Content="{Binding ActualHeight, ElementName=this}"/>
  <!--doesn't work-->
  <ContentControl>
    <Binding>
      <Binding.Converter>
        <BindingConverter Value="{Binding ActualHeight, ElementName=this}" />
      </Binding.Converter>
    </Binding>
  </ContentControl>
  <TextBlock Text="{Binding Animals}"/>
</StackPanel>

我错过了什么吗?

3 个答案:

答案 0 :(得分:1)

我的项目中有一些地方需要类似的功能。无法向您展示确切的样本,只是一个想法:

  • 也许你必须从FrameworkElement继承,而不是IValueConverter,像这样:

    public class BindingHelper : FrameworkElement    
    
  • 在BindingHelper类中的
  • ,将Visibility设置为Collapsed,将IsHitTestVisible设置为false;

  • 使其工作,直接将其插入可视树。在您的示例中,它应该是StackPanel的子级。因此,它将具有与其他StackPanel子项相同的DataContext;
  • 然后,您可以根据需要添加一个或多个依赖项属性。例如,您可能拥有数据源的单个属性和一些不同的属性,然后您将这些属性用作转换器返回值。处理BindingHelper类中source属性的所有更改并相应地更改输出属性;
  • 使用ElementName语法
  • 将其他控件绑定到BindingHelper类的属性

答案 1 :(得分:0)

请注意! ActualHeight属性的绑定在绑定时是错误的!

为什么在编码转换器时继承DependencyObject?你应该实现IValueConverter

试试,

首先在您的资源上通过“MyConverterResource”的键添加MyConverter,然后,

可以在XAML方面或在cs方面进行
//You may do it on XAML side <UserControl.Resources>...
this.Resources.Add("MyConverterResource",new MyConverter());

<TextBlock Text="{Binding ActualHeight,ElementName=this
,Converter=MyConverterResource}"/>

public class MyConverter: IValueConverter
{

public object Convert(object value, Type targetType
, object parameter,Globalization.CultureInfo culture)
 {

   return "Your Height is:"+Value.toString();
}

}

希望帮助

答案 2 :(得分:0)

Silverlight中的

ActualHeightActualWidth属性不会对属性更新进行通知。因此,绑定它们将无法正常工作。