Skip to content

Commit d4f03c3

Browse files
Update specs/StatusBarMessage.md
Co-authored-by: David Risney <dave@deletethis.net>
1 parent 4c3058d commit d4f03c3

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

specs/StatusBarMessage.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ settings.
1212
Developers would also like to be able to opt in to intercept the messages which would
1313
normally 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
1616
listen for Status bar updates which are triggered by activity on the WebView, and then handle those updates however they want in their applications.
1717

1818
Developers 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
```
9090
namespace 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
```

0 commit comments

Comments
 (0)