Initial commit
Initial commit til Git. V2 er deployed
This commit is contained in:
22
PointOfSale/Pos.Ui/Pos/Setting/Employee/EmployeeWindow.xaml
Normal file
22
PointOfSale/Pos.Ui/Pos/Setting/Employee/EmployeeWindow.xaml
Normal file
@@ -0,0 +1,22 @@
|
||||
<Window x:Class="Pos.Setting.EmployeeWindow"
|
||||
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="Medarbejder" Height="400" Width="450" Icon="../../Icons/employees.png">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<ListBox Name="LstStaff" Grid.Row="0" Grid.Column="0" Style="{StaticResource ListBox}">
|
||||
</ListBox>
|
||||
<StackPanel Grid.Row="0" Grid.Column="1">
|
||||
<Button Content="Opret" Style="{StaticResource Buttons}" Name="btnCreate" Click="btnCreate_Click" />
|
||||
<Button Content="Redigere" Style="{StaticResource Buttons}" Name="btnEdit" IsEnabled="False" Click="btnEdit_Click" />
|
||||
<Button Content="Arkivere" Style="{StaticResource Buttons}" Name="btnDelete" IsEnabled="False" Click="btnDelete_Click" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user