2023-01-13 01:29:53 +08:00
|
|
|
<UserControl
|
|
|
|
x:Class="Semi.Avalonia.Demo.Pages.NotificationDemo"
|
|
|
|
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">
|
2023-02-09 22:21:36 +08:00
|
|
|
<StackPanel HorizontalAlignment="Left" Spacing="20">
|
2024-03-22 20:37:01 +08:00
|
|
|
<StackPanel.Styles>
|
|
|
|
<Style Selector="Button">
|
|
|
|
<Setter Property="Theme" Value="{DynamicResource SolidButton}" />
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
|
|
</Style>
|
|
|
|
</StackPanel.Styles>
|
|
|
|
|
2023-10-09 14:56:40 +08:00
|
|
|
<Button Click="InfoButton_OnClick" Content="Default" />
|
2023-01-13 01:29:53 +08:00
|
|
|
<Button Click="InfoButton_OnClick" Content="Information" />
|
2024-03-22 20:37:01 +08:00
|
|
|
<Button Click="InfoButton_OnClick" Content="Success" Classes="Success" />
|
|
|
|
<Button Click="InfoButton_OnClick" Content="Warning" Classes="Warning" />
|
|
|
|
<Button Click="InfoButton_OnClick" Content="Error" Classes="Danger" />
|
2023-01-13 01:29:53 +08:00
|
|
|
</StackPanel>
|
2024-03-22 20:37:01 +08:00
|
|
|
</UserControl>
|