我有两个按钮作为前后和一个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 :(得分:0)
将绑定添加到命令中。
Command="{Binding NavigationCommands.BrowseBack}"