TemplateBinding 不适用于 .NET Framework 对象
我刚开始使用 ControlTemplate
。我正在编写我的第一个控件,但我遇到了(在我看来)一个非常奇怪的问题。
我使 TemplateBinding
起作用的任何依赖项属性,但来自 .NET 框架对象的任何属性,即 ContentControl
的 Content
属性或 < ItemsControl
的 code>Items 属性不会在运行时填充。
我确信我错过了一些东西...我不知道它是什么...
代码示例如下:
该类目前非常简单:
public class Title : ContentControl
{
}
模板是:
<Style TargetType="{x:Type UI:Title}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type UI:Title}">
<TextBlock Text="{TemplateBinding Content}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
基本 ContentControl class 是位于 System.Windows.Controls.Control 命名空间中的 .NET 类。
谢谢,
亚当
I am new to using the ControlTemplate
. I am writing my first control but I am having (what seems to me) a very strange issue.
Any dependency properties that I make TemplateBinding
to work, but any properties from the .NET framework objects i.e. the Content
property of a ContentControl
or the Items
property of an ItemsControl
does not get populated at runtime.
I am sure I am missing something... Just what it is I dont know...
An example of the code is below:
The class is very simple at the moment:
public class Title : ContentControl
{
}
And the Template is:
<Style TargetType="{x:Type UI:Title}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type UI:Title}">
<TextBlock Text="{TemplateBinding Content}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
The base ContentControl
class is the .NET class located in the System.Windows.Controls.Control namespace.
Thanks,
Adam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信如果您想覆盖 内容放置在您可以使用内容演示者。
请注意,我还从 TextBlock 更改为 Label,因为我相信 TextBlock。 Text 属性不会接受 ContentControl.Content 中的所有内容。这是我整理的一个按预期工作的示例:
I believe if you'd like to override where the Content is placed you can do that using a ContentPresenter.
Note I've also changed from a TextBlock to a Label as I believe the TextBlock.Text property will not accept everything from ContentControl.Content. Here is an example I put together that works as intended:
您可能需要在对象上实现 INotifyPropertyChanged 接口,并在集合上实现 INotifyCollectionChanged。
You may need to implement the INotifyPropertyChanged interface on your objects and INotifyCollectionChanged on your collections.