17 lines
1.1 KiB
XML
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>
|