2023-01-21 00:40:47 +08:00
|
|
|
<UserControl
|
|
|
|
x:Class="Semi.Avalonia.Demo.Pages.ButtonSpinnerDemo"
|
|
|
|
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-01-21 01:24:38 +08:00
|
|
|
<StackPanel
|
|
|
|
Margin="20"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Spacing="20">
|
2023-01-21 00:40:47 +08:00
|
|
|
<ButtonSpinner
|
|
|
|
Height="30"
|
|
|
|
AllowSpin="{Binding #allowSpinCheck.IsChecked}"
|
2023-01-23 00:02:25 +08:00
|
|
|
BorderThickness="1"
|
2023-01-21 00:40:47 +08:00
|
|
|
ShowButtonSpinner="{Binding #showSpinCheck.IsChecked}"
|
|
|
|
Spin="OnSpin">
|
|
|
|
<TextBlock
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center"
|
2023-01-23 00:02:25 +08:00
|
|
|
Background="Gray"
|
2023-01-21 00:40:47 +08:00
|
|
|
Text="Everest" />
|
|
|
|
</ButtonSpinner>
|
|
|
|
<ButtonSpinner
|
|
|
|
Height="30"
|
|
|
|
AllowSpin="{Binding #allowSpinCheck.IsChecked}"
|
2023-01-23 00:02:25 +08:00
|
|
|
BorderThickness="1"
|
2023-01-21 00:40:47 +08:00
|
|
|
ButtonSpinnerLocation="Left"
|
|
|
|
ShowButtonSpinner="{Binding #showSpinCheck.IsChecked}"
|
|
|
|
Spin="OnSpin">
|
|
|
|
<TextBlock
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center"
|
2023-01-23 00:02:25 +08:00
|
|
|
Background="Gray"
|
2023-01-21 00:40:47 +08:00
|
|
|
Text="Everest" />
|
|
|
|
</ButtonSpinner>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|