プロジェクトでWebView2
コントロールを使用してアプリを実行すると、コントロール内の Web ページが表示されません。代わりに、アプリは次のメッセージを表示し、Microsoft Edge for Business のダウンロード ページに移動します。UWP
WinUI 3.0
WebView2
Microsoft Edge の適切なバージョンが検出されませんでした。ここから最新のベータ チャネル ビルドをインストールしてください
質問: Microsoft Edge for Business が求められているのはなぜですか? MS Edge Canary Channel
の最新バージョンと最新リリース バージョンの MS Edgeが既に にインストールされていWindows 10 - Pro
ます。あまり多くのバージョンをインストールしたくありません。
MainPage.xaml :
<Page
x:Class="UWP_WinUI.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UWP_WinUI"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Button x:Name="myButton" Click="myButton_Click">Click Me</Button>
<WebView2 x:Name="wvTest" Grid.Row="1" Source="https://www.bing.com/"/>
</Grid>
</Page>
アプリの表示
WebVeiw2
Web ページは、ボタン コントロールの下に表示されるはずです。ただし、代わりに、メッセージ (以下に示す) が表示されます。