atomui/samples/AtomUI.Demo.Desktop/ShowCase/EmptyShowCase.axaml

47 lines
2.1 KiB
Plaintext
Raw Normal View History

<UserControl
x:Class="AtomUI.Demo.Desktop.ShowCase.EmptyShowCase"
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"
xmlns:atom="https://atomui.net"
2024-09-10 13:46:03 +08:00
xmlns:desktop="clr-namespace:AtomUI.Demo.Desktop"
mc:Ignorable="d">
2024-09-10 13:46:03 +08:00
<desktop:ShowCasePanel>
<desktop:ShowCaseItem
2024-07-14 18:10:17 +08:00
Title="Basic"
Description="Simplest Usage.">
2024-09-10 12:46:41 +08:00
<atom:EmptyIndicator PresetImage="Default" />
2024-09-10 13:46:03 +08:00
</desktop:ShowCaseItem>
2024-09-10 12:46:41 +08:00
2024-09-10 13:46:03 +08:00
<desktop:ShowCaseItem
2024-07-14 18:10:17 +08:00
Title="Size"
Description="AtomUI supports three sizes of buttons: small, default and large.">
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
2024-09-10 12:46:41 +08:00
<atom:EmptyIndicator PresetImage="Simple" SizeType="Small" />
<atom:EmptyIndicator PresetImage="Simple" SizeType="Middle" />
<atom:EmptyIndicator PresetImage="Simple" SizeType="Large" />
2024-07-14 18:10:17 +08:00
</StackPanel>
</StackPanel>
2024-09-10 13:46:03 +08:00
</desktop:ShowCaseItem>
2024-09-10 12:46:41 +08:00
2024-09-10 13:46:03 +08:00
<desktop:ShowCaseItem
2024-07-14 18:10:17 +08:00
Title="Customize"
Description="Customize image source, image size, description and extra content.">
<StackPanel Orientation="Vertical" Spacing="10">
2024-09-10 12:46:41 +08:00
<atom:EmptyIndicator ImagePath="avares://AtomUI.Demo.Desktop/Assets/EmptyShowCase/empty.svg"
SizeType="Large"
Description="Customize Description" />
2024-07-14 18:10:17 +08:00
<atom:Button HorizontalAlignment="Center" ButtonType="Primary">Create Now</atom:Button>
</StackPanel>
2024-09-10 13:46:03 +08:00
</desktop:ShowCaseItem>
2024-07-14 18:10:17 +08:00
2024-09-10 13:46:03 +08:00
<desktop:ShowCaseItem
2024-07-14 18:10:17 +08:00
Title="No description"
Description="Simplest Usage with no description.">
2024-09-10 12:46:41 +08:00
<atom:EmptyIndicator PresetImage="Default" IsShowDescription="False" />
2024-09-10 13:46:03 +08:00
</desktop:ShowCaseItem>
</desktop:ShowCasePanel>
2024-09-10 12:46:41 +08:00
</UserControl>