Mega Code Archive

 
Categories / VB.Net / WPF
 

The first row of a grid

<Window x:Class="Drawing.ViewboxResize"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     Title="ViewboxResize" Height="247" Width="315"     >   <Grid Margin="5">     <Grid.RowDefinitions>       <RowDefinition Height="Auto"></RowDefinition>       <RowDefinition Height="*"></RowDefinition>     </Grid.RowDefinitions>     <TextBlock>The first row of a grid.</TextBlock>     <Viewbox Grid.Row="1" HorizontalAlignment="Left"  MaxHeight="500">       <Canvas Width="200" Height="150">         <Ellipse Fill="Yellow" Stroke="Blue" Canvas.Left="10"  Canvas.Top="50"                Width="100" Height="50" HorizontalAlignment="Left"></Ellipse>       <Rectangle Fill="Yellow" Stroke="Blue" Canvas.Left="30"  Canvas.Top="40"                                   Width="100" Height="50" HorizontalAlignment="Left"></Rectangle>     </Canvas>     </Viewbox>   </Grid>    </Window>