14 lines
461 B
XML
14 lines
461 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 Padding="12" HorizontalAlignment="Stretch">
|
|
<ItemsControl
|
|
MaxWidth="768"
|
|
ItemTemplate="{ReflectionBinding Template}"
|
|
ItemsSource="{Binding}" />
|
|
</ScrollViewer>
|
|
</UserControl>
|