/ Published in: XML
Expand |
Embed | Plain Text
<Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:own="clr-namespace:WpfApplication1" Title="Window1" Height="279" Width="613"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="100" /> <ColumnDefinition Width="*" /> <ColumnDefinition Width="2*" /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="100" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Grid Grid.Column="1" Grid.RowSpan="2"> <Label Content="Label" Background="AliceBlue"></Label> </Grid> </Grid> </Window>
You need to login to post a comment.
