File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ settings.
1212Developers would also like to be able to opt in to intercept the messages which would
1313normally be displayed by the Status bar, and show it using thier own custom UI.
1414# Description
15- We propose two new events for WebView2 that would allow developers to
15+ We propose a new event for WebView2 that would allow developers to
1616listen for Status bar updates which are triggered by activity on the WebView, and then handle those updates however they want in their applications.
1717
1818Developers will be able to register an even handler for changes to the status bar message.
@@ -89,15 +89,10 @@ interface ICoreWebView2_5 : ICoreWebView2_4 {
8989```
9090namespace Microsoft.Web.WebView2.Core {
9191
92- /// Interface for the statusbar message changed event args
93- /// The value property contains the status bar text
94- runtimeclass CoreWebView2StatusBarMessageChangedEventArgs {
95- string statusBarMessage {get;};
96- }
97-
9892/// Interface for the status bar message changed event handler
9993 runtimeclass CoreWebView2 {
10094 event Windows.Foundation.TypedEventHandler<CoreWebView2, Object> StatusBarMessageChanged;
95+ string statusBarMessage {get;};
10196 }
10297}
10398```
You can’t perform that action at this time.
0 commit comments