日期:2014-05-18 浏览次数:21073 次
<Window x:Class="Test.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"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"></RowDefinition> <RowDefinition Height="Auto"></RowDefinition> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <Border Grid.Row="1" Width="20" Height="20" Background="Green" BorderBrush="Transparent"></Border> <Label Grid.Row="2" Width="20" Height="20" Background="Green"></Label> </Grid> </Window>