5d2d0ad312
Send tab: Recipient and Amount cards side-by-side on desktop using a two-column Grid, making full use of the available window width. Summary card and action buttons remain full-width below both columns. Mobile retains the original vertical stack. Receive tab: QR card on the left (auto-width), address card expands to fill the right column on desktop — standard fintech wallet pattern. Mobile retains QR above, address below. Window enlarged to 1020×680 (from 900×620) and fixed with CanResize=False; Min/Max dimensions match so the resize handle never appears.
23 lines
863 B
XML
23 lines
863 B
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:PalladiumWallet.App.ViewModels"
|
|
xmlns:views="using:PalladiumWallet.App.Views"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="1020" d:DesignHeight="680"
|
|
x:Class="PalladiumWallet.App.Views.MainWindow"
|
|
x:DataType="vm:MainWindowViewModel"
|
|
Icon="/Assets/logo.ico"
|
|
Width="1020" Height="680"
|
|
MinWidth="1020" MinHeight="680"
|
|
MaxWidth="1020" MaxHeight="680"
|
|
CanResize="False"
|
|
Title="{Binding WindowTitle}">
|
|
|
|
<Design.DataContext>
|
|
<vm:MainWindowViewModel/>
|
|
</Design.DataContext>
|
|
|
|
<views:MainView/>
|
|
</Window>
|