Files
Walleby/Wallet.Avalonia/AttachmentEntryCollectionView.axaml
T
2024-07-26 21:45:22 +01:00

16 lines
557 B
XML

<SettingsExpander
x:Class="Wallet.Avalonia.AttachmentEntryCollectionView"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:Wallet"
x:DataType="vm:AttachmentEntryCollectionViewModel"
Header="{Binding Key}"
IsExpanded="True"
IsExpandable="{Binding Count}"
ItemTemplate="{ReflectionBinding Template}"
ItemsSource="{Binding}">
<SettingsExpander.Action>
<Button Command="{Binding InvokeCommand}" />
</SettingsExpander.Action>
</SettingsExpander>