ControlTemplate 中的 UWP TemplateBinding 为固定值

UWP TemplateBinding in ControlTemplate to fixed value

我想将我的 Controltemplate 中的 属性 (myHeight) 绑定到父项。到目前为止,以下是我的代码。

资源字典

<Style TargetType="local2:TestingControl" >
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="local2:TestingControl">
                <Border
                    Height="{TemplateBinding myHeight}"
                    Background="Green"
                    BorderBrush="{TemplateBinding BorderBrush}"
                    BorderThickness="{TemplateBinding BorderThickness}">
                    <StackPanel>                            
                        <ContentPresenter Content="{TemplateBinding Content}"/>
                    </StackPanel>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

TestingControl.cs

[ContentProperty(Name = "Content")]
public sealed class TestingControl : Control
{
    public TestingControl()
    {
        this.DefaultStyleKey = typeof(TestingControl);
    }

    public static readonly double myHeight = (double)100;

    public object Content
    {
        get { return (string)GetValue(ContentProperty); }
        set { SetValue(ContentProperty, value); }
    }

    public static readonly DependencyProperty ContentProperty =
        DependencyProperty.Register("Content", typeof(string), typeof(TestingControl), new PropertyMetadata(string.Empty));
}

我要绑定的是 myHeight。我想在 .cs 中包含它,因为我需要对其进行 运行 一些操作。这无法完全加载!


我也试过下面的方法

资源字典

<x:Double x:Key="myHeight">100</x:Double>
<Style TargetType="local2:TestingControl" >
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="local2:TestingControl">
                <Border
                    Height="{ThemeResource myHeight}"
                    Background="Green"
                    BorderBrush="{TemplateBinding BorderBrush}"
                    BorderThickness="{TemplateBinding BorderThickness}">

                    <ContentPresenter Content="{TemplateBinding Content}"/>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

TestingControl.cs

[ContentProperty(Name = "Content")]
public sealed class TestingControl : Control
{
    public TestingControl()
    {
        this.DefaultStyleKey = typeof(TestingControl);

        var x  = (double)Resources["myHeight"];
    }

    public object Content
    {
        get { return (string)GetValue(ContentProperty); }
        set { SetValue(ContentProperty, value); }
    }

    public static readonly DependencyProperty ContentProperty =
        DependencyProperty.Register("Content", typeof(string), typeof(TestingControl), new PropertyMetadata(string.Empty));
}

第二种方法的问题是,当读取 .cs 代码中的 属性 时,var x = (double)Resources["myHeight"]; 我得到一个异常。

任何一个(最好是两个,因为我只是想学习 UWP)的解决方案将不胜感激。

首先是 TemplateBinding 应该绑定依赖项 属性 而你写的静态文件不能绑定到 Height。

第二件事是 ThemeResource 会找到主题,但您定义了一个静态源。

<x:Double x:Key="myHeight">100</x:Double>
<Style TargetType="local2:TestingControl" >
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="local2:TestingControl">
                <Border
                    Height="{StaticResource myHeight}"
                    Background="Green"
                    BorderBrush="{TemplateBinding BorderBrush}"
                    BorderThickness="{TemplateBinding BorderThickness}">

                    <ContentPresenter Content="{TemplateBinding Content}"/>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

第三个是你先拿到资源,但是资源是在OnApplyTemplate之后才初始化的。

您应该将获取资源的代码移至 OnApplyTemplate。

    protected override void OnApplyTemplate()
    {
        try
        {
            // find something in TestingControl.Resources
            var x = Resources["myHeight"];
        }
        catch (Exception e)
        {

        }

        try
        {
            // find something in App.Resources
            var x = App.Current.Resources["myHeight"];
        }
        catch (Exception e)
        {

        }

        base.OnApplyTemplate();
    }

如果您的资源是用 App.xaml 编写的,您应该使用 App.Current.Resources 来获取资源。

如果您想在您的海关控制中获取资源,您应该将资源添加到您的控制中。

    <local:TestingControl>
        <local:TestingControl.Resources>
            <x:Double x:Key="myHeight">100</x:Double>
        </local:TestingControl.Resources>
    </local:TestingControl>