1

我有一个充满标签的网格,它们都使用相同的样式,即 DynamicResource:

<Label Grid.Row="0" Style="{DynamicResource MyStyle}"/>
<Label Grid.Row="1" Style="{DynamicResource MyStyle}"/>
<Label Grid.Row="2" Style="{DynamicResource MyStyle}"/>

有没有办法只为网格中的所有标签设置一次样式?我尝试过这种方式,但BasedOn不适用于DynamicResources.

4

2 回答 2

1

一种方法是MergedDictionaries像这样使用:

<UserControl.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/assemblyName;component/yourStyle.xaml"/>
        </ResourceDictionary.MergedDictionaries>
        <!--If you want to include additional resources you need to place them here-->
        <SolidColorBrush x:Key="TextBox.Static.Border" Color="#FFABAdB3"/>
    </ResourceDictionary>
</UserControl.Resources>

然后在您的 Grid 中,您可以像这样使用它:

<Grid>
    <Grid.Resources><!-- This will only use the style in the Grid-->
        <Style TargetType="Label" BasedOn="{StaticResource MyStyle}"/>
    </Grid.Resources>
</Grid>  

这现在应该仅将您的 Style 用于 Grid 或Labelwhere Style="{StaticResource myStyle}"

于 2016-05-24T16:08:48.967 回答
0

您可以执行以下操作:

    <Window.Resources>

    <Style TargetType="Label">

    ...

    </Style>

    </Window.Resources>
于 2016-05-24T15:25:33.660 回答