2026-06-11 10:47:52 +02:00
|
|
|
<Window xmlns="https://github.com/avaloniaui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:vm="using:PalladiumWallet.App.ViewModels"
|
2026-06-12 16:06:37 +02:00
|
|
|
xmlns:views="using:PalladiumWallet.App.Views"
|
2026-06-11 10:47:52 +02:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2026-06-16 15:04:07 +02:00
|
|
|
mc:Ignorable="d" d:DesignWidth="1020" d:DesignHeight="680"
|
2026-06-11 10:47:52 +02:00
|
|
|
x:Class="PalladiumWallet.App.Views.MainWindow"
|
|
|
|
|
x:DataType="vm:MainWindowViewModel"
|
2026-06-12 10:40:19 +02:00
|
|
|
Icon="/Assets/logo.ico"
|
2026-06-16 15:04:07 +02:00
|
|
|
Width="1020" Height="680"
|
|
|
|
|
MinWidth="1020" MinHeight="680"
|
|
|
|
|
MaxWidth="1020" MaxHeight="680"
|
|
|
|
|
CanResize="False"
|
2026-06-12 12:01:08 +02:00
|
|
|
Title="{Binding WindowTitle}">
|
2026-06-11 10:47:52 +02:00
|
|
|
|
|
|
|
|
<Design.DataContext>
|
|
|
|
|
<vm:MainWindowViewModel/>
|
|
|
|
|
</Design.DataContext>
|
|
|
|
|
|
2026-06-12 16:06:37 +02:00
|
|
|
<views:MainView/>
|
2026-06-11 10:47:52 +02:00
|
|
|
</Window>
|