Files
Walleby/Wallet.Avalonia/CreateWalletNavigationView.axaml
2024-06-15 18:37:02 +01:00

17 lines
700 B
XML

<SettingsExpander
x:Class="Wallet.Avalonia.CreateWalletNavigationView"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Description="Keep organized by separating your things into Wallets."
Header="Create a new Wallet">
<SettingsExpander.Footer>
<Button MinWidth="132" Content="Create Wallet">
<Interaction.Behaviors>
<EventTriggerBehavior EventName="Click">
<NavigateAction Region="{x:Type ContentDialog}" Route="CreateWallet" />
</EventTriggerBehavior>
</Interaction.Behaviors>
</Button>
</SettingsExpander.Footer>
</SettingsExpander>