2017-01-30 11 views
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}" /> 

答えて

0

バインディングをコマンドに追加します。

Command="{Binding NavigationCommands.BrowseBack}" 
関連する問題