
I saw there is a description for "HasSearchOverlayPaneKeyBindings" in SyntaxEditor Class reference:
> This properly should be set to false when an external search UI is used, since a false setting will prevent access to the built-in search overlay pane.
and in Search Overlay Pane reference:
> Disabling Built-in Search Functionality
> To prevent the end user from activating the built-in search features, set the SyntaxEditor.HasSearchOverlayPaneKeyBindings property to false.
>
> This is useful when your app uses a custom search UI.
I set HasSearchOverlayPaneKeyBindings="False" on my editor's XAML or editor class that inherits SyntaxEdior, but a built-in search overlay pane is still displayed when I enter Ctrl+F key on the editor.
I refered samples - "Search - Custom Pattern Provider" and "Search - Find Results".
But they also display the built-in search overlay pane.
I also refered following thread:
https://www.actiprosoftware.com/community/thread/25111/how-to-programmatically-disable-new-search-ov
What should I do to disable the built-in search overlay pane?