26 lines
1.3 KiB
Plaintext
26 lines
1.3 KiB
Plaintext
|
<Window xmlns="https://github.com/avaloniaui"
|
||
|
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"
|
||
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||
|
x:Class="AvaloniaApplication1.Views.LayoutDemo1"
|
||
|
Title="LayoutDemo1"
|
||
|
Width="1200"
|
||
|
Height="800"
|
||
|
Background="SlateBlue"
|
||
|
ExtendClientAreaToDecorationsHint="True"
|
||
|
TransparencyLevelHint="AcrylicBlur"
|
||
|
WindowStartupLocation="CenterOwner">
|
||
|
<Border Background="BurlyWood"
|
||
|
BorderBrush="Black"
|
||
|
BorderThickness="2"
|
||
|
Padding="15">
|
||
|
<StackPanel Width="1170" Height="770" Background="White" HorizontalAlignment="Center" VerticalAlignment="Top">
|
||
|
<TextBox Margin="5,0 " FontSize="18" HorizontalAlignment="Center">布局示例内容。。。。。。 </TextBox>
|
||
|
<Button HorizontalAlignment="Left" Content="第一个按钮" />
|
||
|
<Button HorizontalAlignment="Right" Content="第二个按钮" />
|
||
|
<Button HorizontalAlignment="Stretch" Content="第三个按钮" />
|
||
|
<Button HorizontalAlignment="Center" Content="第四个按钮" />
|
||
|
</StackPanel>
|
||
|
</Border>
|
||
|
</Window>
|