2023-01-23 14:57:40 +08:00
|
|
|
<UserControl
|
|
|
|
x:Class="Semi.Avalonia.Demo.Pages.NumericUpDownDemo"
|
|
|
|
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"
|
2024-03-24 21:56:46 +08:00
|
|
|
d:DesignHeight="800"
|
2023-01-23 14:57:40 +08:00
|
|
|
d:DesignWidth="800"
|
|
|
|
mc:Ignorable="d">
|
2023-02-09 22:21:36 +08:00
|
|
|
<StackPanel HorizontalAlignment="Left" Spacing="20">
|
2024-03-24 21:56:46 +08:00
|
|
|
<StackPanel.Styles>
|
|
|
|
<Style Selector="NumericUpDown">
|
|
|
|
<Setter Property="Width" Value="300" />
|
|
|
|
<Setter Property="Maximum" Value="100" />
|
|
|
|
<Setter Property="Minimum" Value="0" />
|
|
|
|
</Style>
|
|
|
|
</StackPanel.Styles>
|
|
|
|
|
|
|
|
<NumericUpDown />
|
|
|
|
<NumericUpDown Increment="10" />
|
|
|
|
<NumericUpDown ButtonSpinnerLocation="Left" />
|
|
|
|
<NumericUpDown ShowButtonSpinner="False" />
|
|
|
|
<NumericUpDown Classes="Large" />
|
|
|
|
<NumericUpDown Classes="Small" />
|
|
|
|
<NumericUpDown InnerLeftContent="Price" InnerRightContent="$" />
|
|
|
|
|
2024-03-11 19:52:11 +08:00
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-03-24 21:56:46 +08:00
|
|
|
<NumericUpDown
|
|
|
|
Width="100"
|
|
|
|
Classes="Large"
|
|
|
|
Watermark="Large"
|
|
|
|
ButtonSpinnerLocation="Left" />
|
|
|
|
<NumericUpDown
|
|
|
|
Width="100"
|
|
|
|
Watermark="Default"
|
|
|
|
ShowButtonSpinner="False" />
|
|
|
|
<NumericUpDown
|
|
|
|
Width="100"
|
|
|
|
Watermark="Small"
|
|
|
|
Classes="Small" />
|
2024-03-11 19:52:11 +08:00
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-03-24 21:56:46 +08:00
|
|
|
<NumericUpDown Width="100" ButtonSpinnerLocation="Left" />
|
|
|
|
<NumericUpDown Width="100" ShowButtonSpinner="False" />
|
|
|
|
<NumericUpDown Width="100" />
|
2024-03-11 19:52:11 +08:00
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2024-03-24 21:56:46 +08:00
|
|
|
<NumericUpDown Width="100" ShowButtonSpinner="False" />
|
|
|
|
<NumericUpDown Width="100" IsEnabled="False" />
|
|
|
|
<NumericUpDown Width="100" ButtonSpinnerLocation="Left" />
|
2024-03-11 19:52:11 +08:00
|
|
|
</StackPanel>
|
|
|
|
|
2023-01-23 14:57:40 +08:00
|
|
|
</StackPanel>
|
2024-03-11 19:52:11 +08:00
|
|
|
</UserControl>
|