Created
January 30, 2014 22:11
-
-
Save tecnocrata/8721074 to your computer and use it in GitHub Desktop.
Como usar un DockPanel en WPF, Algo similar al StackPanel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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