RelativeSource.TemplatedParent 属性wpf


今天看到这一句代码时候,自己只是知道绑定了,可是不知道绑定了什么啊
就去查了一下,后来说的好像是绑定的TemplateParent返回的 一个值。可是这是为什么呢,
有的说是绑定的是一个资源。
下面有一个例子
下面的示例显示名为 NumericUpDown 的自定义控件的 Style 定义。将 TextBlock 的 Text 属性绑定到对象 TemplatedParent 的 Value,在此情况下即应用了此 Style 的 NumericUpDown 控件。


<Style TargetType="{x:Type local:NumericUpDown}">
  <Setter Property="HorizontalAlignment" Value="Center"/>
  <Setter Property="VerticalAlignment" Value="Center"/>
  <Setter Property="Template">
    <Setter.Value>
      "{x:Type local:NumericUpDown}">
        <Grid Margin="3">
          <Grid.RowDefinitions>
            
            
         

你可能感兴趣的:(wpf,wpf,属性,templates,Relative)