读书人

WPF(Grid与格局)

发布时间: 2013-04-07 12:50:11 作者: rapoo

WPF(Grid与布局)

<Window x:Class="TestOfGrid.MainWindow"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">    <Grid x:Name="gridMain">        <Grid.ColumnDefinitions >            <ColumnDefinition />            <ColumnDefinition />            <ColumnDefinition />        </Grid.ColumnDefinitions>                <Grid.RowDefinitions >            <RowDefinition Height="30px"/>            <RowDefinition Height="30"/>            <RowDefinition Height="0.5in"/>            <RowDefinition Height="1cm"/>            <RowDefinition Height="30pt"/>        </Grid.RowDefinitions>    </Grid></Window>


读书人网 >编程

热点推荐