12345678910111213141516171819202122232425262728293031323334353637 |
- <Window x:Class="Test.Layout.WinLayout"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:Test.Layout"
- xmlns:controls="http://schemas.FWind/xaml"
- mc:Ignorable="d"
- Title="WinLayout" Height="300" Width="300">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <StackPanel>
- <controls:LabelEditor Header="刺激" LabelWidth="50" Margin="3">
- <TextBox Text="ccc"></TextBox>
- </controls:LabelEditor>
- <controls:LabelEditor Header="刺激2" LabelWidth="50" Margin="3" Orientation="Vertical">
- <TextBox Text="dadasdasda"></TextBox>
- </controls:LabelEditor>
- </StackPanel>
- <StackPanel Grid.Column="1">
- <controls:LabelEditor Header="刺激" Orientation="Vertical" Margin="3">
- <TextBox Text="ccc"></TextBox>
- </controls:LabelEditor>
- <controls:LabelEditor Header="刺激" Orientation="Vertical" Margin="3">
- <TextBox Text="ccc"></TextBox>
- </controls:LabelEditor>
- <controls:LabelEditor Header="刺激" Orientation="Vertical" Margin="3">
- <TextBox Text="ccc"></TextBox>
- </controls:LabelEditor>
- </StackPanel>
- </Grid>
- </Window>
|