TemplateBinding 的限制

发布于 2024-11-16 19:24:08 字数 668 浏览 4 评论 0原文

自定义控件(在 VS 2008 下编写)具有 SelectedColor 依赖属性,其控件模板包含以下内容:

...
<Rectangle>
  <Rectangle.Fill>
    <SolidColorBrush Color="{TemplateBinding SelectedColor}"/>
  </Rectangle.Fill>
</Rectangle>
...

矩形没有正确的颜色,除非绑定被替换为:

...
<Rectangle>
  <Rectangle.Fill>
    <SolidColorBrush Color="{Binding SelectedColor, RelativeSource={RelativeSource TemplatedParent}}"/>
  </Rectangle.Fill>
</Rectangle>
...

好的,我知道 TemplateBinding 是 Binding 的简化版本它有一系列限制,那么导致上述代码无法工作的确切限制是什么?

A custom control (written under VS 2008) has a SelectedColor Dependency Property and its Control Template contains the following:

...
<Rectangle>
  <Rectangle.Fill>
    <SolidColorBrush Color="{TemplateBinding SelectedColor}"/>
  </Rectangle.Fill>
</Rectangle>
...

The rectangle does not have the correct color unless the binding is repleaced with:

...
<Rectangle>
  <Rectangle.Fill>
    <SolidColorBrush Color="{Binding SelectedColor, RelativeSource={RelativeSource TemplatedParent}}"/>
  </Rectangle.Fill>
</Rectangle>
...

OK, I am aware that TemplateBinding is a simplified version of Binding and it has a set of limitations, so what is the exact limitation that cause the above code not to work?

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

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

发布评论

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

评论(1

遥远的绿洲 2024-11-23 19:24:08

TemplateBinding 非常不同。当应用模板时,将它们视为简单的值分配。
由于 SelectedItem 在运行时发生更改,因此您需要一个真正的绑定来发送属性更改通知。

TemplateBinding are very different. Think of them as simple value assignment when the template is applied.
Since you SelectedItem changes at runtime, you need a real binding for property change notification.

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