将ControlTemplate中的标签绑定到Window标题

时间:2012-01-20 16:34:06

标签: wpf c#-3.0 controltemplate

对于新应用程序,我为窗口创建了一个自定义ControlTemplate,以便所有窗口具有相同的外观。当我将属性WindowStyle设置为none并将AllowsTransparency设置为true时,我需要创建自己的窗口控件(如关闭按钮,标题栏等)。

是否有可能只使用模板中的xaml代码将ControlTemplate中包含的标签文本绑定到这一个窗口的Window标题?

1 个答案:

答案 0 :(得分:1)

{TemplateBinding Title}应该这样做(TemplateBinding reference)。