0

我一直在使用 C# 在 Metro/XAML 中编写复杂的自定义控件。

为了说明我的观点,我创建了一个最小的场景供您参考。

一个简单的自定义控件如下:

public sealed class TestControl : Control
{
    public static DependencyProperty TestTextProperty = DependencyProperty.Register("TestText", typeof(string), typeof(TestControl), new PropertyMetadata(string.Empty));

    public string TestText
    {
        get { return (string) GetValue(TestTextProperty); }
        set { SetValue(TestTextProperty, value); }
    }

    public static DependencyProperty TestColorProperty = DependencyProperty.Register("TestColor", typeof(Color), typeof(TestControl), new PropertyMetadata(Colors.Blue));

    public Color TestColor
    {
        get { return (Color)GetValue(TestColorProperty); }
        set { SetValue(TestColorProperty, value); }
    }

    public TestControl()
    {
        this.DefaultStyleKey = typeof(TestControl);
    }
}

Thie 控件有两个依赖属性,一个 Text 属性和一个 color 属性。

这是我在 Generic.xaml 中的控件标准样式

<Style TargetType="local:TestControl">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="local:TestControl">
                <Border
                    Background="{TemplateBinding Background}"
                    BorderBrush="{TemplateBinding BorderBrush}"
                    BorderThickness="{TemplateBinding BorderThickness}">
                    <TextBlock Text="{TemplateBinding TestText}">
                        <TextBlock.Foreground>
                            <SolidColorBrush Color="{Binding Source={RelativeSource Mode=TemplatedParent}, Path=TestColor}" />
                        </TextBlock.Foreground>
                    </TextBlock>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

有两个问题:

1)这段代码不会编译:

<Grid Background="{StaticResource ApplicationPageBackgroundBrush}">
    <local:TestControl x:Name="testcont" TestText="Hello" TestColor="Red"   />
</Grid>

错误是:

XAML BlankPage.xaml 中的属性 TestColor 上不允许值类型颜色

所以看起来颜色的类型转换器坏了(我假设)。为了解决这个问题,我在代码隐藏中设置了 TestColor 属性:

public BlankPage()
{
    this.InitializeComponent();
    testcont.TestColor = Colors.Red;
}

这允许代码编译,但是颜色永远不会在模板中正确设置。我什至使用了ValueConverter

<TextBlock.Foreground>
    <SolidColorBrush Color="{Binding Source={RelativeSource Mode=TemplatedParent}, Path=TestColor, Converter={StaticResource DebugConverter}}" />
</TextBlock.Foreground>

但是中的断点ValueConverter永远不会被命中,这意味着绑定以某种方式默默地失败。

似乎没有解决办法。有人可以阐明这个问题吗?

谢谢

4

3 回答 3

1

值类型依赖属性存在一个已知问题:XAML 中的属性 Duration 不允许值类型持续时间 MS 表示将修复。目前,您可以将属性类型从颜色更改为对象。

于 2012-05-31T17:08:13.227 回答
0

有两个命名空间定义颜色类型,System.DrawingSystem.Windows.Media. 您的颜色属性可能属于绘图命名空间,而 XAML 使用媒体命名空间。

使用System.Windows.Media.Brush类型而不是Color(同样命名空间很重要),并Bindable(true)为 CLR 属性添加属性。

为了演示,请查看 Background 属性声明Control

[Bindable(true), Category("Appearance")]
public Brush Background
{
    get
{
    return (Brush)base.GetValue(Control.BackgroundProperty);
}
set
{
    base.SetValue(Control.BackgroundProperty, value);
}
}
于 2012-05-29T19:29:34.357 回答
0

您需要使用 a Brush,而不是 a Color

testcont.TestColor = Brushes.Red;

DependencyProperty 也应该是画笔,而不是颜色。您可以使用颜色,但必须将颜色转换为画笔。

于 2012-05-29T19:17:12.527 回答