Hello,
I'm using a MarkdownViewer in a WPF app I'm working on. I've run into some issues with focus:
MarkdownViewer.Focusable is enabled by default which is probably going to be surprising to most users since it's a read-only control (I just disabled it myself).
- If
NewsViewer.Markdown is empty, tabbing in the app still ends up giving focus to some hidden element within the viewer (not sure which).
- If
NewsViewer.Markdown contains a hyperlink, tabbing will eventually give focus to that hyperlink, in addition to the previous point.
What I'd like to achieve is not allowing focus on any element within the MarkdownViewer. Is this possible?