Guest User

Untitled

a guest
Jan 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <Grid>
  2. <Grid.RowDefinitions>
  3. <RowDefinition Height="2*"/>
  4. <RowDefinition Height="3*" x:Name="bottomRow"/>
  5. </Grid.RowDefinitions>
  6. <Grid.ColumnDefinitions>
  7. <ColumnDefinition Width="*"/>
  8. <ColumnDefinition Width="250"/>
  9. </Grid.ColumnDefinitions>
  10.  
  11. <Grid Width="{Binding ActualHeight, ElementName=bottomRow, Mode=OneWay}" Name="CameraGrid" Margin="20" Grid.Row="1" Grid.Column="0" Background="Green">
  12.  
  13. </Grid>
  14. </Grid>
  15.  
  16. <Grid Name="CameraGrid" Margin="20" Grid.Row="1" Grid.Column="0" >
  17. <Grid Width="{Binding ActualHeight, Mode=OneWay, RelativeSource={RelativeSource Self}}" Background="Green">
  18.  
  19. </Grid>
  20. </Grid>
Add Comment
Please, Sign In to add comment