首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

WPF(Grid与格局)

2013-04-07 
WPF(Grid与布局)Window x:ClassTestOfGrid.MainWindowxmlnshttp://schemas.microsoft.com/winfx/200

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>


热点排行