在 WPF 中,为什么使用 TemplateBinding 时 Rectangle.Fill 属性似乎不起作用?
我不明白为什么这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为颜色具有不同的类型,然后背景
背景是画笔,颜色是.. 颜色.. 您可以使用 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