Skip to content

Commit 3cc91b0

Browse files
authored
[inflight/candidate] September 15th, 2025 (#31525)
2 parents 3273d2b + 9d75fbe commit 3cc91b0

File tree

379 files changed

+7479
-2586
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

379 files changed

+7479
-2586
lines changed

src/BlazorWebView/src/Maui/BlazorWebViewHandler.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ public partial class BlazorWebViewHandler
2525
{
2626
[nameof(IBlazorWebView.HostPage)] = MapHostPage,
2727
[nameof(IBlazorWebView.RootComponents)] = MapRootComponents,
28+
#if WINDOWS
29+
[nameof(IView.FlowDirection)] = MapFlowDirection,
30+
#endif
31+
2832
};
2933

3034
/// <summary>

src/BlazorWebView/src/Maui/Windows/BlazorWebViewHandler.Windows.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,12 @@ private void StartWebViewCoreIfPossible()
114114
_webviewManager.Navigate(VirtualView.StartPath);
115115
}
116116

117+
internal static void MapFlowDirection(BlazorWebViewHandler handler, IView view)
118+
{
119+
// Explicitly do nothing here to override the base ViewHandler.MapFlowDirection behavior
120+
// This prevents the WebView2.FlowDirection from being set, avoiding content mirroring
121+
}
122+
117123
internal IFileProvider CreateFileProvider(string contentRootDir)
118124
{
119125
// On WinUI we override HandleWebResourceRequest in WinUIWebViewManager so that loading static assets is done entirely there in an async manner.

src/Controls/docs/Microsoft.Maui.Controls/BindingBase.xml

Lines changed: 0 additions & 230 deletions
This file was deleted.

0 commit comments

Comments
 (0)