繁体   English   中英

以自定义样式访问依赖项属性

[英]Accessing a Dependency Property in Custom Style

我需要一些有关依赖项属性的帮助。 嗨,我想访问控制模板中定义的两个属性CheckedText和UncheckedText:

<Style x:Key="ToggleCheckBoxStyle" TargetType="{x:Type CheckBox}">
    <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" />
    <Setter Property="Height" Value="30" />
    <Setter Property="Width" Value="110" />
    <Setter Property="packages:Variables.X" Value="0" />
    <Setter Property="FontFamily" Value="Segoe UI" />
    <Setter Property="FontWeight" Value="Bold" />
    <Setter Property="FontSize" Value="13" />
    <Setter Property="BorderBrush" Value="#FF939393" />
    <Setter Property="BorderThickness" Value="1" />
    <Setter Property="VerticalAlignment" Value="Center" />
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type CheckBox}">
                <Grid ClipToBounds="True">
                    <Grid x:Name="Container">

                        ...

                        <Border Height="{Binding Height,
                                                 RelativeSource={RelativeSource TemplatedParent}}"
                                HorizontalAlignment="Left"
                                Background="{TemplateBinding styles:ToggleCheckBox.CheckedBackground}">
                            <Border.Width>
                                <MultiBinding Converter="{arithmeticConverter:ArithmeticConverter}" ConverterParameter="x-y">
                                    <Binding Path="Width" RelativeSource="{RelativeSource TemplatedParent}" />
                                    <Binding Path="(styles:ToggleCheckBox.ToggleWidth)" RelativeSource="{RelativeSource TemplatedParent}" />
                                </MultiBinding>
                            </Border.Width>
                            <TextBlock HorizontalAlignment="Center"
                                       VerticalAlignment="Center"
                                       FontFamily="{TemplateBinding FontFamily}"
                                       FontSize="{TemplateBinding FontSize}"
                                       FontWeight="{TemplateBinding FontWeight}"
                                       Foreground="{TemplateBinding styles:ToggleCheckBox.CheckedForeground}"
                                       Text="{TemplateBinding styles:ToggleCheckBox.**CheckedText**}" />
                        </Border>
                        <Border Width="{Binding Width,
                                                RelativeSource={RelativeSource TemplatedParent},
                                                Converter={arithmeticConverter:ArithmeticConverter},
                                                ConverterParameter=x-20}"
                                Height="{Binding Height,
                                                 RelativeSource={RelativeSource TemplatedParent}}"
                                HorizontalAlignment="Left"
                                Background="{TemplateBinding styles:ToggleCheckBox.UncheckedBackground}">
                            <Border.RenderTransform>
                                <TranslateTransform X="{Binding Width, RelativeSource={RelativeSource TemplatedParent}}" />
                            </Border.RenderTransform>
                            <TextBlock HorizontalAlignment="Center"
                                       VerticalAlignment="Center"
                                       FontFamily="{TemplateBinding FontFamily}"
                                       FontSize="{TemplateBinding FontSize}"
                                       FontWeight="{TemplateBinding FontWeight}"
                                       Foreground="{TemplateBinding styles:ToggleCheckBox.UncheckedForeground}"
                                       Text="{TemplateBinding styles:ToggleCheckBox.**UncheckedText**}" />
                        </Border>
                    </Grid>
                    <Border Background="Transparent"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="{TemplateBinding BorderThickness}"
                            CornerRadius="1" />
                </Grid>

这是ToggleCheckBox中依赖项属性的定义:

public class ToggleCheckBox
{
    public static readonly DependencyProperty CheckedTextProperty = DependencyProperty.RegisterAttached("CheckedText", typeof(string), typeof(ToggleCheckBox), new FrameworkPropertyMetadata("ON"));
    public static void SetCheckedText(UIElement element, string value)
    {
        element.SetValue(CheckedTextProperty, value);
    }

    public static string GetCheckedText(UIElement element)
    {
        return (String)element.GetValue(CheckedTextProperty);
    }

    public static readonly DependencyProperty UncheckedTextProperty = DependencyProperty.RegisterAttached("UncheckedText", typeof(string), typeof(ToggleCheckBox), new FrameworkPropertyMetadata("OFF"));

    public static void SetUncheckedText(UIElement element, string value)
    {
        element.SetValue(UncheckedTextProperty, value);
    }

    public static string GetUncheckedText(UIElement element)
    {
        return (String)element.GetValue(UncheckedTextProperty);
    }
}

在我看来,用法是:

<CheckBox x:Name="IsDataStoreLocal"
          HorizontalAlignment="Left"
          Style="{StaticResource ToggleCheckBoxStyle}" 
          CheckedText="YES" 
          UnCheckedText="NO"/>

我想做的就是上面的事情。 当然,无法识别属性,可能是因为我只有样式而不是控件。 如何使用这种样式在新的复选框中更改Checked和UncheckedText值?

任何帮助,将不胜感激。 谢谢,威尔

我已经看过类似的问题,但是找不到与我要解决的问题相匹配的问题。

要在目标元素(复选框)上设置附加的属性值,请使用以下语法:

namespacePrefix:ownerTypeName.propertyName

如果是您的自定义属性:

<CheckBox styles:ToggleCheckBox.CheckedText="YES"/>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM