当我在ms docs参考页面中查看WPF的示例代码时,我看到一个XAML段看起来如下所示。
<ContentPresenter
Margin="10"
Content="{TemplateBinding Content}"
TextBlock.Foreground="{TemplateBinding Foreground}" />
来源就在这里。
我的问题是,在最后一行,ContentPresenter中有TextBlock.Foreground设置。但是我没有在任何地方看到任何TextBlock元素,这似乎工作得很好。我不明白。 这怎么可能首先起作用?有人可以告诉我为什么,拜托?