c# – wpf为命名元素创建样式

是否可以在不编辑元素的情况下为xaml元素添加样式?

例如:

xaml元素:

<Grid>
     <Grid x:Name="A">content A</Grid>
     <Grid x:Name="B">content B</Grid>
</Grid>

和风格:

<Style x:Key="StyleForA" TargetName="A" TargetType="{x:Type Grid}" >
   <Setter Property="Background" Value="Red"/>
</Style>
<Style x:Key="StyleForB" TargetName="B" TargetType="{x:Type Grid}" >
   <Setter Property="Background" Value="Green"/>
</Style>

UPD:
我有一个有很多风格的项目(航空,黑色等).

如果我编辑元素Style =“{StaticResources StyleForA}”,我必须编辑所有样式.
所以我需要创建影响命名元素的本地样式.

最佳答案 本地你不能.

但是,如果不接触您的XAML,您可以使用代码轻松完成:

    Grd1.Style = (Style) this.Resources["GridKey"];

使用Blend行为的纯XAML方法,

<Grid x:Name="Grd1">
    <i:Interaction.Triggers>
        <i:EventTrigger EventName="Loaded">
            <ic:ChangePropertyAction PropertyName="Style" Value="{DynamicResource GridKey}"/>
        </i:EventTrigger>
    </i:Interaction.Triggers>
</Grid>
点赞