Add Int64Displayer control for long type support (#811)

This commit is contained in:
Copilot
2025-11-07 21:35:52 +08:00
committed by GitHub
parent d495c98967
commit 6941cef2a7
3 changed files with 28 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
<StackPanel HorizontalAlignment="Left">
<Button Command="{Binding IncreaseCommand}">Change</Button>
<u:Int32Displayer Value="{Binding Value}" />
<u:Int64Displayer Value="{Binding LongValue}" />
<u:DoubleDisplayer StringFormat="N2" Value="{Binding DoubleValue}" />
<u:DateDisplay
FontSize="30"
@@ -21,6 +22,7 @@
Value="{Binding DateValue}" />
<TextBlock Text="Selectable: "></TextBlock>
<u:Int32Displayer Value="{Binding Value}" IsSelectable="True" />
<u:Int64Displayer Value="{Binding LongValue}" IsSelectable="True" />
<u:DoubleDisplayer StringFormat="N2" Value="{Binding DoubleValue}" IsSelectable="True" />
<u:DateDisplay
FontSize="30"