WPF 模板绑定父级控件内容

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>

 

posted @ 2018-10-12 12:04  microsoftzhcn  阅读(2623)  评论(0编辑  收藏  举报