标签:bsp nbsp bin property val label type bind lse
WPF 模板绑定父级控件内容
<Style TargetType="Button" x:Key="btn">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Label Content="{Binding Path=Content,RelativeSource={ RelativeSource Mode=TemplatedParent}}"></Label>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
标签:bsp nbsp bin property val label type bind lse
原文地址:https://www.cnblogs.com/sntetwt/p/9777428.html