<Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <!--TitlePanel contains the name of the application and page title--> <StackPanel x:Name="TitlePanel" Grid.Row="0"> <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/> <TextBlock x:Name="PageTitle" Text="page name" Style="{StaticResource PhoneTextTitle1Style}"/> </StackPanel> <!--ContentPanel - place additional content here--> <Grid x:Name="ContentPanel" Grid.Row="1"> <TextBlock Height="62" HorizontalAlignment="Left" Name="lblTitle" Text="i = " VerticalAlignment="Top" TextAlignment="Center" FontSize="32" Width="82" /> <TextBlock FontSize="32" Height="62" HorizontalAlignment="Left" Name="lbli" Text="0" TextAlignment="Center" VerticalAlignment="Top" Width="82" /> <Button Content="i = i + 1" Height="72" HorizontalAlignment="Left" Name="btn1" VerticalAlignment="Top" Width="264" /> <Button Content="i = i + 2" Height="72" HorizontalAlignment="Left" Name="btn2" VerticalAlignment="Top" Width="264" /> </Grid> </Grid>
<Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions>
<!--TitlePanel contains the name of the application and page title--> <StackPanel x:Name="TitlePanel" Grid.Row="0"> <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/> <TextBlock x:Name="PageTitle" Text="page name" Style="{StaticResource PhoneTextTitle1Style}"/> </StackPanel>
<!--ContentPanel - place additional content here--> <Grid x:Name="ContentPanel" Grid.Row="1" > <TextBlock Height="62" HorizontalAlignment="Left" Name="lblTitle" Text="i = " VerticalAlignment="Top" TextAlignment="Center" FontSize="32" Width="82" /> <TextBlock FontSize="32" Height="62" HorizontalAlignment="Left" Name="lbli" Text="0" TextAlignment="Center" VerticalAlignment="Top" Width="82" /> <Button Content="i = i + 1" Height="72" HorizontalAlignment="Left" Name="btn1" VerticalAlignment="Top" Width="264" /> <Button Content="i = i + 2" Height="72" HorizontalAlignment="Left" Name="btn2" VerticalAlignment="Top" Width="264" /> </Grid>
<Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions>
<!--LayoutRoot is the root grid where all page content is placed--> <Grid x:Name="LayoutRoot" Background="Transparent" ShowGridLines="True"> <!--Create a 4 x 3 grid to store an title image and button layout.--> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <!-- Rows 1 --> <Button Content="Button 01" Grid.Row="0" Grid.Column="0" HorizontalAlignment="Center" Name="Button01" VerticalAlignment="Center" /> <Button Content="Button 02" Grid.Row="0" Grid.Column="1" HorizontalAlignment="Center" Name="Button02" VerticalAlignment="Center" /> <Button Content="Button 03" Grid.Row="0" Grid.Column="3" HorizontalAlignment="Center" Name="Button03" VerticalAlignment="Center" /> <!-- Rows 2 --> <Button Content="Button 04" Grid.Row="1" Grid.Column="0" HorizontalAlignment="Center" Name="Button04" VerticalAlignment="Center" /> <Button Content="Button 05" Grid.Row="1" Grid.Column="1" HorizontalAlignment="Center" Name="Button05" VerticalAlignment="Center" /> <Button Content="Button 06" Grid.Row="1" Grid.Column="3" HorizontalAlignment="Center" Name="Button06" VerticalAlignment="Center" /> <!-- Rows 3 --> <Button Content="Button 07" Grid.Row="2" Grid.Column="0" HorizontalAlignment="Center" Name="Button07" VerticalAlignment="Center" /> <Button Content="Button 08" Grid.Row="2" Grid.Column="1" HorizontalAlignment="Center" Name="Button08" VerticalAlignment="Center" /> <Button Content="Button 09" Grid.Row="2" Grid.Column="3" HorizontalAlignment="Center" Name="Button09" VerticalAlignment="Center" /> <!-- Rows 4 --> <Button Content="Button 10" Grid.Row="3" Grid.Column="0" HorizontalAlignment="Center" Name="Button10" VerticalAlignment="Center" /> <Button Content="Button 11" Grid.Row="3" Grid.Column="1" HorizontalAlignment="Center" Name="Button11" VerticalAlignment="Center" /> <Button Content="Button 12" Grid.Row="3" Grid.Column="3" HorizontalAlignment="Center" Name="Button12" VerticalAlignment="Center" /> </Grid>
Grid.Row="0" Grid.Column="0"
<!--LayoutRoot is the root grid where all page content is placed--> <Grid x:Name="LayoutRoot" Background="Transparent" ShowGridLines="True"> <!--Create a 4 x 3 grid to store an title image and button layout.--> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <!-- Rows 1 --> <Button Content="Button 01" Grid.Row="0" Grid.Column="0" Grid.RowSpan="2" HorizontalAlignment="Center" Name="Button01" VerticalAlignment="Center" /> <Button Content="Button 02" Grid.Row="0" Grid.Column="1" HorizontalAlignment="Center" Name="Button02" VerticalAlignment="Center" /> <Button Content="Button 03" Grid.Row="0" Grid.Column="3" HorizontalAlignment="Center" Name="Button03" VerticalAlignment="Center" /> <!-- Rows 2 --> <StackPanel Background="Transparent" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2"> <TextBlock Height="30" Name="TextBlock1" Text="TextBlock 1" HorizontalAlignment="Center" /> <TextBlock Height="30" Name="TextBlock2" Text="TextBlock 2" HorizontalAlignment="Center" /> <TextBlock Height="30" Name="TextBlock3" Text="TextBlock 3" HorizontalAlignment="Center" /> <TextBlock Height="30" Name="TextBlock4" Text="TextBlock 4" HorizontalAlignment="Center" /> <TextBlock Height="30" Name="TextBlock5" Text="TextBlock 5" HorizontalAlignment="Center" /> <TextBlock Height="30" Name="TextBlock6" Text="TextBlock 6" HorizontalAlignment="Center" /> </StackPanel> <!-- Rows 3 --> <Button Content="Button 05" Grid.Row="2" Grid.Column="0" HorizontalAlignment="Center" Name="Button05" VerticalAlignment="Center" /> <Button Content="Button 06" Grid.Row="2" Grid.Column="1" HorizontalAlignment="Center" Name="Button06" VerticalAlignment="Center" /> <Button Content="Button 07" Grid.Row="2" Grid.Column="3" HorizontalAlignment="Center" Name="Button07" VerticalAlignment="Center" /> <!-- Rows 4 --> <Button Content="Button 08" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="3" HorizontalAlignment="Center" Name="Button10" VerticalAlignment="Center" /> </Grid>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท