22 lines
1.0 KiB
XML
22 lines
1.0 KiB
XML
<UserControl
|
|
x:Class="Ursa.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"
|
|
xmlns:u="https://irihi.tech/ursa"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d">
|
|
<StackPanel>
|
|
<u:IntUpDown Name="input" Step="1" Value="2" Watermark="Input Value" />
|
|
<TextBlock Text="{Binding #input.Value}" ></TextBlock>
|
|
<u:DoubleUpDown Name="inputDouble" Step="0.5" Value="3.1" EmptyInputValue="1"></u:DoubleUpDown>
|
|
<TextBlock Text="{Binding #inputDouble.Value}"></TextBlock>
|
|
<u:ByteUpDown Name="inputByte" Step="1" Value="3" EmptyInputValue="1"></u:ByteUpDown>
|
|
<TextBlock Text="{Binding #inputByte.Value}"></TextBlock>
|
|
<TextBlock Text="Drag"></TextBlock>
|
|
<u:IntUpDown Step="1" Value="2" Watermark="Input Value" TextEditable="False" />
|
|
</StackPanel>
|
|
</UserControl>
|