Files
TheXamlGuy c4ba9615a3 tidy up ui
2024-06-10 21:34:42 +01:00

17 lines
511 B
XML

<UserControl
x:Class="Wallet.Avalonia.ManageView"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:Wallet"
x:DataType="vm:ManageViewModel">
<ScrollViewer
Margin="0,44,0,0"
Padding="12,0,12,12"
HorizontalAlignment="Stretch">
<ItemsControl
MaxWidth="768"
ItemTemplate="{ReflectionBinding Template}"
ItemsSource="{Binding}" />
</ScrollViewer>
</UserControl>