File attachment WIP

This commit is contained in:
TheXamlGuy
2024-07-24 21:18:39 +01:00
parent 455c633980
commit c3996d3bcc
11 changed files with 147 additions and 24 deletions
@@ -0,0 +1,15 @@
<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"
IsToggleable="{Binding Count}"
ItemTemplate="{ReflectionBinding Template}"
ItemsSource="{Binding}">
<SettingsExpander.Action>
<Button Command="{Binding InvokeCommand}" />
</SettingsExpander.Action>
</SettingsExpander>