2017-01-30 65 views
0

我有兩個按鈕作爲前後和一個webbrowser。 我已經將CommandTarget設置爲WebBrowser。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}"