Crtl-F WPF Instance #4356
Answered
by
amaitland
mbowles201
asked this question in
Q&A
-
After a lot of searching, I found a bunch of old posts about sending a "find" command to the browser. They all mention WinForms. Is there a usable solution to passing the Crtl-F command to the browser to do a stander page search in a WPF application? |
Beta Was this translation helpful? Give feedback.
Answered by
amaitland
Jan 9, 2023
Replies: 1 comment 1 reply
-
The fundamentals are the same for
chromiumWebBrowser.FindHandler = new MyFindHandler();
It's up to developers to provide their own UI if required. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mbowles201
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The fundamentals are the same for
WPF
.Implement IFindHandler
Assign instance of IFindHandler
It's up to developers to provide their own UI if required.