Initial commit

Initial commit til Git.
V2 er deployed
This commit is contained in:
2026-06-13 17:31:50 +02:00
parent 9fcd2b145e
commit 41e23b6184
375 changed files with 15956 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<Window x:Class="Pos.Setting.SettingWindow"
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.Setting"
mc:Ignorable="d"
Title="Indstillinger" Height="450" Width="800" Icon="../Icons/settings.png">
<WrapPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Style="{StaticResource MenuButtons}" x:Name="btnClerks" Content="Medarbejder" Click="btnClerks_Click"/>
<Button Style="{StaticResource MenuButtons}" x:Name="btnCategories" Content="Varegrupper" Click="btnCategories_Click" />
<!--<Button Style="{StaticResource MenuButtons}" x:Name="btnProductGroups" Content="Varer" Click="btnProductGroups_Click" />-->
</WrapPanel>
</Window>