0

他のタイプの含まれる要素にカスケードするコンテナー (Grid、Canvas など) 内/コンテナーのスタイルを宣言できますか?

例えば:

<Grid>
    <Declare some style with target type of Label/>
    <label Name="ElementIwantStyleAppliedTo1" Content="Foo"/>
    <StackPanel>
         <label Name="ElementIwantStyleAppliedTo2" Content="Foo"/>
    </StackPanel>
</Grid>
4

1 に答える 1

1

これが基本です!

コンテナコントロールのResourceプロパティを使用します。

<Grid.Resources>
     <Style TargetType="{x:Type Label}">
          <Setter Property="Foreground" Value="Red" />
     </Style>
</Grid.Resources>
于 2012-04-26T14:26:27.137 に答える