Added the abilty to load configuration sections using * pattern

This commit is contained in:
TheXamlGuy
2024-04-24 23:08:58 +01:00
parent 672286cbfd
commit 4ffb3257f8
26 changed files with 318 additions and 70 deletions
@@ -0,0 +1,16 @@
<SettingsExpander
x:Class="Bitvault.Avalonia.CreateVaultNavigationView"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Description="Keep organized by separating your things into vaults."
Header="Create a new vault">
<SettingsExpander.Footer>
<Button MinWidth="132" Content="Create vault">
<Interaction.Behaviors>
<EventTriggerBehavior EventName="Click">
<NavigateAction Route="CreateVault" />
</EventTriggerBehavior>
</Interaction.Behaviors>
</Button>
</SettingsExpander.Footer>
</SettingsExpander>