WPF:使用TemplateBinding将整数绑定到TextBlock

时间:2010-06-18 12:58:27

标签: wpf xaml binding controltemplate

我在WPF中有自定义控件。在此,我有DependencyProperty类型的int。在自定义控件的模板中,我有一个TextBlock,我希望在TextBlock中显示整数的值。但我无法让它发挥作用。

我正在使用TemplateBinding。如果我使用相同的代码,但将DependencyProperty的类型更改为string,则可以正常使用。但我真的希望它是我的应用程序其余部分的整数。

我该怎么做?

我编写了显示问题的简化代码。首先是自定义控件:

public class MyCustomControl : Control
{
    static MyCustomControl()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(MyCustomControl), new FrameworkPropertyMetadata(typeof(MyCustomControl)));

        MyIntegerProperty = DependencyProperty.Register("MyInteger", typeof(int), typeof(MyCustomControl), new FrameworkPropertyMetadata(0));
    }


    public int MyInteger
    {
        get
        {
            return (int)GetValue(MyCustomControl.MyIntegerProperty);
        }
        set
        {
            SetValue(MyCustomControl.MyIntegerProperty, value);
        }
    }
    public static readonly DependencyProperty MyIntegerProperty;
}

这是我的默认模板:

<Style TargetType="{x:Type local:MyCustomControl}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type local:MyCustomControl}">
                <Border BorderThickness="1" CornerRadius="4" BorderBrush="Black" Background="Azure">
                    <StackPanel Orientation="Vertical">
                        <TextBlock Text="{TemplateBinding MyInteger}" HorizontalAlignment="Center" />
                    </StackPanel>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

用法:

<Window x:Class="CustomControlBinding.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:CustomControlBinding"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <local:MyCustomControl Width="100" Height="100" MyInteger="456" />
</Grid>

我做错了什么?

谢谢//大卫

1 个答案:

答案 0 :(得分:18)

尝试使用常规Binding RelativeSource TemplatedParent

<TextBlock Text="{Binding MyInteger, RelativeSource={RelativeSource TemplatedParent}}" HorizontalAlignment="Center" />

根据this thread,这是TemplateBinding的限制:

  

TemplateBinding是一个轻量级的   “绑定”,它不支持一些   传统装订的特点,如此   作为自动类型转换使用   已知的类型转换器相关联   使用目标属性