Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <UserControl ...
  2. ...>
  3.  
  4. ...
  5.  
  6. <Grid>
  7. ... My Content Here ...
  8. </Grid>
  9. </UserControl>
  10.  
  11. <Window ...
  12. ...>
  13.  
  14. ...
  15.  
  16. <Grid>
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="10"/>
  19. <RowDefinition Height="10"/>
  20. <RowDefinition Height="10"/>
  21. </Grid.RowDefinitions>
  22.  
  23. <Border Grid.Row="0" .../>
  24.  
  25. <UserControl Grid.Row="1" prism:RegionManager.RegionName="ModuleARegion"/>
  26.  
  27. <Border Grid.Row="2" .../>
  28.  
  29. </Grid>
  30. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement