Files
MayShow/MainWindow.axaml
T
mbabienco 7ea649850e Start major rework for DataGrid display
For editing of file properties, etc.
2026-02-16 09:40:15 +09:00

16 lines
685 B
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="ReceiptPDFBuilder.MainWindow"
Title="Receipt PDF Builder"
xmlns:vm="clr-namespace:ReceiptPDFBuilder.ViewModels"
x:DataType="vm:MainWindowViewModel"
Width="800"
MinWidth="400"
Height="600"
MinHeight="400">
<ContentControl Content="{Binding CurrentViewModel}"/>
</Window>