You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
We use the Edge as our browser in an RCP program and have multiple problems with the default behavior of the browser. Sadly the Edge Object doesn't grant us any useful access to the ICoreWebView2 Objects, which would allow us to react to zoomfactor changes, manipulate the zoomfactor or change the shortcut behavior.
Solution:
Getter methods for the following objects would be necessary to use the Edge-Browser in a convenient way:
ICoreWebView2Controller
ICoreWebView2Settings
Optional access to the other objects would also be useful:
ICoreWebView2
ICoreWebView2_2
ICoreWebView2Environment2
Examples:
public ICoreWebView2Controller getICoreWebView2Controller() {
return controller;
}
public ICoreWebView2Settings getICoreWebView2Settings() {
return settings;
}
Possible alternatives:
It would also be an idea to enable setter-methods for a lot of variables, but this would be an unneccessary overhead.
The text was updated successfully, but these errors were encountered:
Problem:
We use the Edge as our browser in an RCP program and have multiple problems with the default behavior of the browser. Sadly the Edge Object doesn't grant us any useful access to the ICoreWebView2 Objects, which would allow us to react to zoomfactor changes, manipulate the zoomfactor or change the shortcut behavior.
Solution:
Getter methods for the following objects would be necessary to use the Edge-Browser in a convenient way:
Optional access to the other objects would also be useful:
Examples:
public ICoreWebView2Controller getICoreWebView2Controller() {
return controller;
}
public ICoreWebView2Settings getICoreWebView2Settings() {
return settings;
}
Possible alternatives:
It would also be an idea to enable setter-methods for a lot of variables, but this would be an unneccessary overhead.
The text was updated successfully, but these errors were encountered: