2022-12-16 14:47:05 +08:00
|
|
|
<UserControl
|
2023-02-09 22:21:36 +08:00
|
|
|
x:Class="Semi.Avalonia.Demo.Pages.ExpanderDemo"
|
|
|
|
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"
|
|
|
|
d:DesignHeight="450"
|
|
|
|
d:DesignWidth="800"
|
|
|
|
mc:Ignorable="d">
|
|
|
|
<StackPanel Spacing="20">
|
2022-12-16 14:47:05 +08:00
|
|
|
<StackPanel>
|
2024-08-14 20:00:43 +08:00
|
|
|
<Slider Name="SliderTest" Maximum="400" Minimum="0" TickFrequency="1" IsSnapToTickEnabled="True" />
|
2022-12-16 14:47:05 +08:00
|
|
|
<Expander Header="Expander 1">
|
|
|
|
<TextBlock Text="Hello Avalonia!" />
|
|
|
|
</Expander>
|
|
|
|
<Expander Header="Expander 2">
|
|
|
|
<TextBox Text="Hello Avalonia!" />
|
|
|
|
</Expander>
|
|
|
|
<Expander Header="Expander 3">
|
|
|
|
<Button Content="Hello Avalonia World!" />
|
|
|
|
</Expander>
|
|
|
|
</StackPanel>
|
2023-04-23 01:10:23 +08:00
|
|
|
<Grid ColumnDefinitions="*, *">
|
2022-12-16 14:47:05 +08:00
|
|
|
<Expander
|
2023-02-09 22:21:36 +08:00
|
|
|
Height="200"
|
|
|
|
ExpandDirection="Right"
|
2022-12-16 14:47:05 +08:00
|
|
|
Header="Right">
|
|
|
|
<TextBlock>Right Content</TextBlock>
|
|
|
|
</Expander>
|
|
|
|
<Expander
|
2023-02-09 22:21:36 +08:00
|
|
|
Grid.Column="1"
|
|
|
|
Height="200"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
ExpandDirection="Left"
|
2022-12-16 14:47:05 +08:00
|
|
|
Header="Left">
|
|
|
|
<TextBlock>Left Content</TextBlock>
|
|
|
|
</Expander>
|
|
|
|
</Grid>
|
|
|
|
</StackPanel>
|
2024-08-14 20:00:43 +08:00
|
|
|
</UserControl>
|