제목 : Grid Layout
글번호:
|
|
7
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2008/11/30 오후 4:52:53
|
조회수:
|
|
2909
|
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:sys="clr-namespace:System;assembly=mscorlib" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
<Grid Background="Gray" ShowGridLines="True">
<Grid.RowDefinitions>
<RowDefinition Height="2*" /> <!-- 2배 -->
<RowDefinition Height="Auto" /> <!-- 내용에 따라서 자동 -->
<RowDefinition Height="*" /> <!-- 전체 -->
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="300" /> <!-- 300픽셀 -->
<ColumnDefinition Width="4*" />
</Grid.ColumnDefinitions>
<Button Grid.Row="1" Grid.Column="1" Content="안녕" Margin="5" Grid.ColumnSpan="1" Grid.RowSpan="1" FontSize="33"></Button>
</Grid>
</Page>