TemplateBinding在某些情况下不起作用(使用TranslateTransform时)

Cui*_*崔鹏飞 7 silverlight wpf templatebinding windows-phone-7

这就是我在WPF中重现这个问题的方法:

创建自定义控件:

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

public string Text
{
    get { return (string)GetValue(TextProperty); }
    set { SetValue(TextProperty, value); }
}

// Using a DependencyProperty as the backing store for Text.  This enables animation, styling, binding, etc...
public static readonly DependencyProperty TextProperty =
    DependencyProperty.Register("Text", typeof(string), typeof(TestCustomControl), new PropertyMetadata("Hello"));

public double OffSet
{
    get { return (double)GetValue(OffSetProperty); }
    set { SetValue(OffSetProperty, value); }
}

// Using a DependencyProperty as the backing store for OffSet.  This enables animation, styling, binding, etc...
public static readonly DependencyProperty OffSetProperty =
    DependencyProperty.Register("OffSet", typeof(double), typeof(TestCustomControl), new PropertyMetadata(5.0));
}
Run Code Online (Sandbox Code Playgroud)

在Generic.xaml文件中为它添加样式:

<Style TargetType="local:TestCustomControl">
<Setter Property="Template">
    <Setter.Value>
        <ControlTemplate TargetType="local:TestCustomControl">
            <Grid>
                <TextBlock Text="{TemplateBinding Text}"></TextBlock>
                <TextBlock Text="{TemplateBinding Text}">
                    <TextBlock.RenderTransform>
                        <TranslateTransform X="{TemplateBinding OffSet}" Y="{TemplateBinding OffSet}"/>
                        <!--<TranslateTransform X="10" Y="10"/>-->
                    </TextBlock.RenderTransform>
                </TextBlock>
            </Grid>
        </ControlTemplate>
    </Setter.Value>
</Setter>
Run Code Online (Sandbox Code Playgroud)

然后将其添加到主窗口:

<local:TestCustomControl OffSet="32" Text="the off set is not working" FontSize="36">

    </local:TestCustomControl>
Run Code Online (Sandbox Code Playgroud)

然后运行应用程序,事实证明"文本"工作正常,但"OffSet"不起作用.我在Windows Phone 7开发环境中尝试了类似的东西,我得到了相同的结果.

我应该如何修改代码以使OffSet工作?

谢谢

Ken*_*art 18

尝试:

{Binding Offset, RelativeSource={RelativeSource TemplatedParent}}
Run Code Online (Sandbox Code Playgroud)

  • 我希望我能理解那种巫术. (2认同)