Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <UserControl x:Class="WpfTutorialSamples.Misc_controls.WebBrowserControlSample"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Height="1080" Width="1920">
  5. <DockPanel>
  6. <ToolBar DockPanel.Dock="Top">
  7. <Button Command="NavigationCommands.BrowseBack">
  8. <Rectangle Width="16" Height="16" />
  9. </Button>
  10. <Button Command="NavigationCommands.BrowseForward">
  11. <Rectangle Width="16" Height="16" />
  12. </Button>
  13. <Separator />
  14. <TextBox Name="txtUrl" Width="300" KeyUp="txtUrl_KeyUp" />
  15. <Button Command="NavigationCommands.GoToPage">
  16. <Rectangle Width="16" Height="16" />
  17. </Button>
  18. </ToolBar>
  19. <WebBrowser Name="wbSample" Navigating="wbSample_Navigating"></WebBrowser>
  20. </DockPanel>
  21. </UserControl>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement