Files
point_of_sale/PointOfSale/Pos.Ui/Pos/MainWindow.xaml
Bjarne Pedersen 41e23b6184 Initial commit
Initial commit til Git.
V2 er deployed
2026-06-13 17:31:50 +02:00

17 lines
1.1 KiB
XML

<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:Pos"
xmlns:syncfusion="http://schemas.syncfusion.com/wpf" x:Class="Pos.MainWindow"
mc:Ignorable="d"
Title="Blomster POS" Height="450" Width="800" Icon="Icons/cashier.png">
<WrapPanel HorizontalAlignment="Center" VerticalAlignment="Center" >
<Button Style="{StaticResource MenuButtons}" Content="Kassesalg" Name="btnSale" Click="btnSale_Click"/>
<Button Style="{StaticResource MenuButtons}" Content="Indstillinger" Name="btnSettings" Click="btnSettings_Click" />
<Button Style="{StaticResource MenuButtons}" Content="Print bon" Name="btnPrintReceipt" Click="btnPrintReceipt_Click" />
<Button Style="{StaticResource MenuButtons}" Content="Dagens salg" Name="btnTodaySale" Click="BtnTodaySale_OnClick" />
</WrapPanel>
</Window>