3

说我有以下内容:

<Grid>

    <Grid.Resources>

        <Style TargetType="{x:Type Border}">
            <Style.Triggers>
                <Trigger Property="Border.IsMouseOver" Value="true">
                    <Setter Property="Background" Value="Black" />
                    <Setter Property="BorderBrush" Value="Red" />
                    <Setter Property="BorderThickness" Value="2" />
                    <Setter Property="CornerRadius" Value="7,2,10,2" />
                </Trigger>
                <Trigger Property="Border.IsMouseOver" Value="false">
                    <Setter Property="Background" Value="Black" />
                    <Setter Property="BorderBrush" Value="RoyalBlue" />
                    <Setter Property="BorderThickness" Value="2" />
                    <Setter Property="CornerRadius" Value="7,2,10,2" />
                </Trigger>
            </Style.Triggers>

        </Style>

        <Style TargetType="{x:Type TextBlock}">
            <Setter Property="Margin" Value="7,0,7,1" />
            <Setter Property="FontSize" Value="12" />
            <Setter Property="Foreground" Value="White" />
        </Style>

        <Style TargetType="{x:Type Run}">
            <Setter Property="FontSize" Value="12" />
        </Style>

    </Grid.Resources>

        <FlowDocument >

            <Paragraph>

                <Span>

                    <Border>

                        <TextBlock>Test</TextBlock>

                    </Border>

                </Span>

            </Paragraph>

        </FlowDocument>

    </RichTextBox>

</Grid>

当边框位于 RichTextBox 之外时,样式触发器可以很好地工作,但当它们位于 RichTextBox 中的 InlineUIContainer 内时,样式触发器就不行了。

我可以通过使用 MouseOver 事件和使用 VisualTreeHelper.HitTest() 方法在后面的代码中设置属性来获得所需的行为,但我很确定这是非常低效的,不禁想有更好的方法来解决这个问题吗?

如果有人可以在这里提供一些指导,那将不胜感激。

4

1 回答 1

2

我不得不搜索互联网最深和最黑暗的角落才能找到这个,但看起来有一个黑客可以在 FlowDocument 中为 InlineUIElements 启用事件:

public class EventEnabledFlowDocument : FlowDocument
{
    protected override bool IsEnabledCore
    {
        get
        {
            return true;
        }
    }
}

请注意,这样做可能会产生一些令人讨厌的副作用,但它似乎对我的目的有效。我知道的一个副作用 - 如果您删除 InlineUIElement 然后撤消该删除,则不会保存事件处理程序。

于 2013-08-07T21:32:46.460 回答