繁体   English   中英

模板WPF XAML中的附加属性

[英]Attached properties in Template WPF XAML

我已使用附加属性附加属性和ControlTemplate。 附加属性:

using System.Windows;

namespace NoteProjectV2.classes.frmtopicclasses
{
    class togglebuttonimage : DependencyObject
    {
        public static readonly DependencyProperty togglebuttonimagesource = DependencyProperty.RegisterAttached("ImageSource", typeof(string), typeof(togglebuttonimage), new PropertyMetadata(default(string)));


        public static void Settogglebuttonimagesource(UIElement element, string value)
        {
            element.SetValue(togglebuttonimagesource, value);
        }

        public static string Gettogglebuttonimagesource(UIElement element)
        {
            return (string)element.GetValue(togglebuttonimagesource);
        }


    }
}

这是我的控制模板(我在切换按钮中使用了它)

<Application x:Class="NoteProjectV2.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:NoteProjectV2"
             xmlns:m="clr-namespace:NoteProjectV2.classes.frmtopicclasses"
             StartupUri="frmTopic.xaml">
    <Application.Resources>

        <Style x:Key="togglebutton_topic_menu_normal" TargetType="ToggleButton">
            <Setter Property="Width" Value="40" />
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="ToggleButton">
                        <Border Name="border">
                            <Border.Style>
                                <Style>
                                    <Setter Property="Border.Background" Value="Black"/>

                                </Style>
                            </Border.Style>
                            <Image Width="22" Height="22" Name="image" >
                                <Image.Style>
                                    <Style>
   Only This is not working===============>  <Setter Property="Image.Source" Value="{Binding Path=(m:togglebuttonimage.togglebuttonimagesource),RelativeSource={RelativeSource TemplatedParent}}" />
                                    </Style>
                                </Image.Style>
                            </Image>
                        </Border>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    </Application.Resources>
</Application>

我在代码中使用了附加属性:我还在上面添加了名称空间

xmlns:m="clr-namespace:NoteProjectV2.classes.frmtopicclasses"
<ToggleButton Style="{StaticResource togglebutton_topic_menu_normal}" m:togglebuttonimage.togglebuttonimagesource="accept.png" />

但这不起作用我的问题在哪里?

类DependencyProperty的RegisterRegisterAttached方法的第一个参数是属性的名称。

当您使用名称"ImageSource" ,它实际上应该是"ToggleButtonImageSource" (它已经使用了正确的大小写)。 还要注意,只要仅声明附加属性,就不必从DependencyObject派生拥有的类。

public class ToggleButtonImage
{
    public static readonly DependencyProperty ToggleButtonImageSourceProperty =
        DependencyProperty.RegisterAttached(
            "ToggleButtonImageSource", typeof(string), typeof(ToggleButtonImage));

    public static void SetToggleButtonImageSource(UIElement element, string value)
    {
        element.SetValue(ToggleButtonImageSourceProperty, value);
    }

    public static string GetToggleButtonImageSource(UIElement element)
    {
        return (string)element.GetValue(ToggleButtonImageSourceProperty);
    }
}

除此之外,您最好使用ImageSource而不是string作为属性的类型。

暂无
暂无

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

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