CommunityToolkit / Microsoft.Toolkit.Win32

ARCHIVE - This repository contained XAML Islands wrapper controls and tooling for XAML Islands with WinUI 2, see readme for more info about XAML Islands with WinUI 3 and the WindowsAppSDK.
https://aka.ms/windowsappsdk
Other
383 stars 89 forks source link

Equivalents for WebBrowser's LoadCompleted/Navigated/Navigating events? #272

Open znakeeye opened 4 years ago

znakeeye commented 4 years ago

As shown below, these events are missing. What would be the right way of handling these events when using WebBrowserCompatible?

var webBrowser = new WebBrowser();
webBrowser.LoadCompleted += (s, e) => { };
webBrowser.Navigated += (s, e) => { };
webBrowser.Navigating += (s, e) => { };

var webView = new WebViewCompatible();
webView.LoadCompleted += (s, e) => { }; // Does not exist
webView.Navigated += (s, e) => { };     // Does not exist
webView.Navigating += (s, e) => { };    // Does not exist
ghost commented 4 years ago

Hello znakeeye, thank you for your interest in Win32!

I have automatically added a "needs triage" label to help get things started. Our team will look into the question and answer ASAP. Other community members may also answer the question and provide feedback 🙌

ghost commented 4 years ago

This issue has been marked as "needs attention 👋" due to no activity for 15 days. Please triage the issue so the fix can be established.

ghost commented 4 years ago

This issue has been marked as "needs attention 👋" due to no activity for 15 days. Please triage the issue so the fix can be established.

michael-hawker commented 4 years ago

FYI @pagoe-msft