0
私は前後に2つのボタンとWebブラウザを持っています。 WebBrowserとしてCommandTargetを設定しました。CommandTargetがWebBrowserコントロールと連携していません
<Button Content="Back" Grid.Column="0" Command="NavigationCommands.BrowseBack" CommandTarget="{Binding ElementName=AppBrowser}"/>
<Button Content="Forward" Grid.Column="1" Command="NavigationCommands.BrowseForward" CommandTarget="{Binding ElementName=AppBrowser}"/>
しかし、ブラウザのナビゲーションで前後の表示が有効/無効になっていません。
<WebBrowser x:Name="AppBrowser" extension:WebBrowserUtility.BindableSource="{Binding ElementName=TxtAddress,Path=Text}" />