在样式设置器中设置自定义附加属性

Mar*_*oba 3 wpf styles attached-properties

我试图在样式中设置附加属性,我想用它们来附加行为。但是我无法让它工作。继承人代码:

附属财产

public class TestBehaviour
{
    public static bool GetTest(Grid grid)
    {
        return (bool)grid.GetValue(TestProperty);
    }

    public static void SetTest(Grid grid, bool value)
    {
        grid.SetValue(TestProperty, value);
    }

    public static readonly DependencyProperty TestProperty = DependencyProperty.RegisterAttached("Test", typeof(bool), typeof(Grid));

}
Run Code Online (Sandbox Code Playgroud)

xml

<Window x:Class="AttachedPropertyTest.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:test="clr-namespace:AttachedPropertyTest"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <Grid.Style>
        <Style TargetType="Grid">
            <Setter Property="test:TestBehaviour.Test" Value="true"></Setter>
        </Style>
    </Grid.Style>
</Grid>
Run Code Online (Sandbox Code Playgroud)

Cle*_*ens 5

附加属性的所有者类型必须是声明它的类,也就是TestBehaviour在这里,而不是Grid. 将声明更改为:

public static readonly DependencyProperty TestProperty =
    DependencyProperty.RegisterAttached("Test", typeof(bool), typeof(TestBehaviour));
Run Code Online (Sandbox Code Playgroud)

请参阅RegisterAttached的 MSDN 文档:

ownerType - 注册依赖属性的所有者类型