ContentPresenter.ContentSource 与内容
基本上,我不明白这里真正的区别是什么:
TabItem 的 Microsoft 代码使用:
<ContentPresenter ContentSource="Header" ... />
那么,何时使用 Content
属性而不是(或除了) ContentSource< /代码>?
Basically, I don't understand what the real difference here is:
The Microsoft code for TabItem uses:
<ContentPresenter ContentSource="Header" ... />
So, when would one use the Content
property instead of (or in addition to) ContentSource
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(MSDN)
ContentSource显然,为了方便起见,可以一次设置更多属性。
实际上,声明:
执行以下初始化。
仅当模板化控件上存在依赖属性时,它才分别对每个属性执行此操作。
(MSDN)
ContentSource
apparently sets more properties at once for convenience.Practically, The declaration:
Performs the following initialization.
It does this for each property separately only if the dependency property exists on the templated control.