37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<UserControl
|
|
x:Class="BeWo.View.Detail.Report.AbwesenheitsEmployeeHeader"
|
|
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:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Width="Auto"
|
|
Height="Auto"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<StackPanel Orientation="Vertical">
|
|
<TextBlock
|
|
x:Name="_EmployeeName"
|
|
HorizontalAlignment="Left"
|
|
FontWeight="SemiBold"
|
|
Foreground="White"
|
|
Text="Max, Mustermann" />
|
|
<TextBlock
|
|
x:Name="_EmployeeUrlaub"
|
|
HorizontalAlignment="Left"
|
|
Foreground="White"
|
|
Text="40 Urlaubstage" />
|
|
<TextBlock
|
|
x:Name="_EmployeeUrlaubDieserMonat"
|
|
HorizontalAlignment="Left"
|
|
Foreground="White"
|
|
Text="Urlaub/Monat: 0 Tage" />
|
|
<TextBlock
|
|
x:Name="_EmployeeKrankheitDieserMonat"
|
|
HorizontalAlignment="Left"
|
|
Foreground="White"
|
|
Text="Krankheit/Monat: 0 Tage" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|