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
@@ -142,15 +142,15 @@ public partial class CoreWebView2Controller
142
142
/// The rasterization scale is the combination of the monitor DPI scale and text scaling set by the user. This value should be updated when the DPI scale of the app's top level window changes (i.e. monitor DPI scale changes or the window changes monitor) or when the text scale factor of the system changes.
143
143
/// Rasterization scale applies to the WebView content, as well as popups, context menus, scroll bars, and so on. Normal app scaling scenarios should use the <seecref="CoreWebView2.ZoomFactor"/> property or <seecref="CoreWebView2.SetBoundsAndZoomFactor"/> method.
144
144
/// </remarks>
145
-
publicdoubleRasterizationScale { get; set;};
145
+
Double RasterizationScale { get; set;};
146
146
147
147
/// <summary>
148
148
/// Determines whether the WebView will detect monitor scale changes.
149
149
/// </summary>
150
150
/// <remarks>
151
151
/// ShouldDetectMonitorScaleChanges property determines whether the WebView attempts to track monitor DPI scale schanges. When true, the WebView will track monitor DPI scale changes, update the <seecref="CoreWebView2.RasterizationScale"/> property, and raise <seecref="CoreWebView2.RasterizationScaleChanged"/> event. When false, the WebView will not track monitor DPI scale changes, and the app must update the <seecref="CoreWebView2.RasterizationScale"/> property itself. <seecref="CoreWebView2.RasterizationScaleChanged"/> event will never be raised when ShouldDetectMonitorScaleChanges is false.
/// RasterizationScalechanged is raised when the <seecref="CoreWebView2Controller.RasterizationScale"/> property changes.
@@ -159,6 +159,6 @@ public partial class CoreWebView2Controller
159
159
/// The event is raised when the Webview detects that the monitor DPI scale has changed, <seecref="CoreWebView2Controller.ShouldDetectMonitorScaleChanges"/> is true, and the Webview has changed the <seecref="CoreWebView2Controller.RasterizationScale"/> property.
0 commit comments