Skip to content

Instantly share code, notes, and snippets.

@tecnocrata
Created January 30, 2014 22:11
Show Gist options
  • Select an option

  • Save tecnocrata/8721074 to your computer and use it in GitHub Desktop.

Select an option

Save tecnocrata/8721074 to your computer and use it in GitHub Desktop.
Como usar un DockPanel en WPF, Algo similar al StackPanel
<DockPanel LastChildFill="True">
<ProgressBar x:Name="pgrBar" Visibility="Hidden" DockPanel.Dock="Bottom" IsIndeterminate="True" Height="20"></ProgressBar>
<WebBrowser Name="webControl" />
</DockPanel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment