Guest User

Untitled

a guest
Apr 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <Window Height="1140" Width="1450">
  2. <Grid Margin="0" Background="White">
  3. <Grid>
  4. <Grid.ColumnDefinitions>
  5. <ColumnDefinition Width="250" />
  6. <ColumnDefinition Width="*" />
  7. </Grid.ColumnDefinitions>
  8. <Grid.RowDefinitions>
  9. <RowDefinition Height="*" />
  10. </Grid.RowDefinitions>
  11. <Grid Background="#FFEEEEEE" Grid.Column="0" Grid.Row="0">
  12. </Grid>
  13. <ItemsControl Width="Auto" Height="Auto" Grid.Row="0" Grid.Column="1" Name="MainRegion" cal:RegionManager.RegionName="MainRegion" Padding="10" Margin="10, 0, 0, 0" Background="#FFFFFFD5" />
  14. </Grid>
  15. </Grid>
  16. </Window>
  17.  
  18. <UserControl Width="Auto" Height="Auto" Background="Red" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
  19. <!-- I want this to take the full width and height of the parent -->
  20. </UserControl>
  21.  
  22. <ItemsControl>
  23. <ItemsControl.ItemsPanel>
  24. <ItemsPanelTemplate>
  25. <Grid/>
  26. </ItemsPanelTemplate>
  27. </ItemsControl.ItemsPanel>
  28. </ItemsControl>
  29.  
  30. <ItemsControl>
  31. <ItemsControl.ItemsPanel>
  32. <ItemsPanelTemplate>
  33. <DockPanel />
  34. </ItemsPanelTemplate>
  35. </ItemsControl.ItemsPanel>
  36. </ItemsControl>
  37.  
  38. <ItemsControl>
  39. <ItemsControl.ItemsPanel>
  40. <ItemsPanelTemplate>
  41. <DockPanel />
  42. </ItemsPanelTemplate>
  43. </ItemsControl.ItemsPanel>
  44. <ItemsControl.ItemContainerStyle>
  45. <Style>
  46. <Setter Property="DockPanel.Dock" Value="Top" />
  47. </Style>
  48. </ItemsControl.ItemContainerStyle>
  49. </ItemsControl>
Add Comment
Please, Sign In to add comment