我创建了Uno基本项目,将WebView控件添加到MainPage.xaml并输入了Source。页面在UWP和Android中正常显示,但在Wasm中看不到任何内容。 https://platform.uno/docs/articles/implemented/windows-ui-xaml-controls-webview.html页说可以在Wasm中使用。有什么问题吗?
我运行下面的代码,仅显示文本Hello World。
<!--MainPage.xaml-->
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Text="Hello World"/>
<WebView Grid.Row="1" Source="https://docs.microsoft.com/en-us/windows/uwp/design/controls-and-patterns/web-view"/>
</Grid>
环境