WPF 样式基于当前上下文中的父样式



比如说,我有一个默认样式TextBox'TextBoxStyleBase'。然后,我定义一个DataGrid样式,该样式具有自己的TextBox样式"基于该基本样式",定义了另一种边框颜色。

DataGrid的某个地方,我想定义另一种TextBox样式,但继承DataGrid样式中定义的样式。

有没有办法使样式继承当前为当前"上下文"中的特定控件定义的样式?

编辑:

为了更清楚,这是我所拥有的:

<!-- explicit style for all TextBoxes -->
<Style TargetType="{x:Type TextBox}" x:Key="TextStyle">
    <Setter Property="FontSize" Value="16"/>
</Style>
<!-- implicit style for all TextBoxes -->
<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource TextStyle}"/>
<!-- DataGrid style changing inner TextBox style -->
<Style TargetType="{x:Type DataGrid}">
    <Style.Resources>
        <Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource TextStyle}">
            <Setter Property="FontSize" Value="20"/>
        </Style>
        <!-- since TextBox has defined implicit style this would be equivalent to -->
        <!--<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
            <Setter Property="FontSize" Value="20"/>
        </Style>-->
    </Style.Resources>
</Style>
<Control>
    <DataGrid>
        <Row>
            <TextBox/> <!-- should show as defined in DataGrid style -->
        </Row>
        <Row>
            <Row.Resources>
                <Style TargetType="{x:Type TextBox}" BasedOn=" ??? ">
                    <Style.Triggers>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="FontWeight" Value="Bold"/>
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </Row.Resources>
            <TextBox/> <!-- should show with additional trigger -->
        </Row>
    </DataGrid>
</Control>

在 BasedOn = '???' 中输入什么,以便文本以 FontSize 20 显示,但如果悬停则显示为粗体。

不能在同一ResourceDictionary中添加两个具有相同键的Styles。因此,如果您已经在特定类型的ResourceDictionary中定义了没有x:Key的隐式Style,则无法将另一个隐式添加到同一ResourceDictionary

否则,您应该能够基于作用域中的默认样式Style,如下所示:

<Style TargetType="TextBox" BasedOn="{StaticResource {x:Type TextBox}}">
    <Style.Triggers>
    </Style.Triggers>
</Style>

请对数据网格内的文本框执行以下操作:

<Style TargetType="TextBox" BasedOn="{StaticResource <your style name>}">

PS:在你的情况下将是TextBoxStyleBase。

相关内容

  • 没有找到相关文章

最新更新