在 WPF 中,为什么使用 TemplateBinding 时 Rectangle.Fill 属性似乎不起作用?

发布于 2024-07-15 07:34:16 字数 923 浏览 6 评论 0原文

我不明白为什么这个 XAML 代码不起作用。 使用 TemplateBinding(见下文)时,设置背景颜色。 但是当我使用普通的颜色字符串(即“红色”)时,它工作正常。

<ControlTemplate x:Key="InstanceButtonTemplate" TargetType="{x:Type Control}">
    <Grid>
        <Rectangle>
            <Rectangle.Fill>
                <SolidColorBrush Color="{TemplateBinding Background}"></SolidColorBrush>
            </Rectangle.Fill>
        </Rectangle>
    </Grid>
</ControlTemplate>

然而,当我以这种方式使用 TemplateBinding 时,它工作得很好......

<ControlTemplate x:Key="InstanceButtonTemplate" TargetType="{x:Type Control}">
    <Grid>
        <Rectangle Fill="{TemplateBinding Background}"></Rectangle>
    </Grid>
</ControlTemplate>

有什么想法吗?

编辑:澄清一下,我打算扩展它以使用渐变画笔,这就是为什么我需要能够使用 XAML 而不是使用一个普通的字符串。

I can't figure out why this XAML code does not work. When using a TemplateBinding (see below), the background color is not set. But when I use a normal color string (i.e. "Red"), it works fine.

<ControlTemplate x:Key="InstanceButtonTemplate" TargetType="{x:Type Control}">
    <Grid>
        <Rectangle>
            <Rectangle.Fill>
                <SolidColorBrush Color="{TemplateBinding Background}"></SolidColorBrush>
            </Rectangle.Fill>
        </Rectangle>
    </Grid>
</ControlTemplate>

Yet, when I use a TemplateBinding in this way, it works Fine...

<ControlTemplate x:Key="InstanceButtonTemplate" TargetType="{x:Type Control}">
    <Grid>
        <Rectangle Fill="{TemplateBinding Background}"></Rectangle>
    </Grid>
</ControlTemplate>

Any ideas?

Edit: to clarify, I intend to expand this to rather use a gradient brush, that's why I need to be able to assign to the Rectangle.Fill property using XAML instead of a plain string.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白馒头 2024-07-22 07:34:16

这是因为颜色具有不同的类型,然后背景

背景是画笔,颜色是.. 颜色.. 您可以使用 IValueConverter 将画笔转换为颜色..

HTH

That is because Color has a different type then Background

Background is a Brush, Color is a.. well Color.. You can use a IValueConverter to convert your brush to a color..

HTH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文