18 lines
597 B
XML
18 lines
597 B
XML
<UserControl
|
|
x:Class="Wallet.Avalonia.ItemContentView"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:Wallet"
|
|
x:DataType="vm:ItemContentViewModel">
|
|
<ItemsControl
|
|
Margin="0,0,0,24"
|
|
ItemTemplate="{ReflectionBinding Template}"
|
|
ItemsSource="{Binding}">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Vertical" Spacing="24" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
</ItemsControl>
|
|
</UserControl>
|