Handle all Hyperlinks MouseEnter event in a loaded loose Flowdocument

心已入冬 提交于 2019-11-28 09:08:29

问题


I'm new to WPF, working on my first project. I've been stuck in this problem for a week so I'm trying to find some help here.

I have a FlowDocumentReader inside my app, wich loads several FlowDocuments (independent files as loose xaml files).

I need to handle the MouseEnter event for all the Hyperlinks in the loaded document but I cannot set MouseEnter="myHandler" in XAML as theese are loose XAML files.

Is there any way to parse de FlowDocument and set the handlers when loading it?

Any other solution? Sorry for the Newbie question, thanks A LOT in advance.


回答1:


After loading your FlowDocument you can enumerate all UIElements using LogicalTreeHelper. It will allow you to find all hyperlinks. Then you can simply subscribe to their MouseEnter event. Here is a code:

    void SubscribeToAllHyperlinks(object sender, RoutedEventArgs e)
    {
        var hyperlinks = GetVisuals(this).OfType<Hyperlink>();
        foreach (var link in hyperlinks)
            link.MouseEnter += Hyperlink_MouseEnter;
    }

    public static IEnumerable<DependencyObject> GetVisuals(DependencyObject root)
    {
        foreach (var child in LogicalTreeHelper.GetChildren(root).OfType<DependencyObject>())
        {
            yield return child;
            foreach (var descendants in GetVisuals(child))
                yield return descendants;
        }
    }

    private void Hyperlink_MouseEnter(object sender, MouseEventArgs e)
    {
        // Do whatever you want here
    }

I've tested it with following XAML:

<FlowDocumentReader>
    <FlowDocument>
        <Paragraph>
            <Hyperlink>asf</Hyperlink>
        </Paragraph>
    </FlowDocument>
</FlowDocumentReader>



回答2:


Take a look at http://xtrememvvm.codeplex.com/

It lets you hook directly into events handlers from loose XAML files.

No docs, but the sample app demos using routed commands and event handlers.

  • Clay


来源:https://stackoverflow.com/questions/5465667/handle-all-hyperlinks-mouseenter-event-in-a-loaded-loose-flowdocument

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!