2018-05-20 13:19:28 +02:00
|
|
|
<localView:BeWoView x:Class="BeWo.View.Navigation.EmployeeNavigationView"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:localView="clr-namespace:BeWo.View"
|
|
|
|
|
xmlns:localNavView="clr-namespace:BeWo.View.Navigation"
|
2017-11-06 10:30:25 +01:00
|
|
|
xmlns:markup="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
|
|
|
Loaded="OnLoaded">
|
2016-06-27 01:45:38 +02:00
|
|
|
<Grid>
|
|
|
|
|
<localNavView:MainNavigationView
|
|
|
|
|
x:Name="mainNavigationView"
|
2017-11-06 10:30:25 +01:00
|
|
|
MainGroupHeader="{markup:Translate Mitarbeiter}"
|
2018-05-20 13:19:28 +02:00
|
|
|
CreateNewObject="MainNavigationView_CreateNewObject"
|
|
|
|
|
OpenObject="MainNavigationView_OpenObject"
|
|
|
|
|
DeleteObject="MainNavigationView_DeleteObject"
|
|
|
|
|
ExcelExport="MainNavigationView_ExcelExport"
|
2016-06-27 01:45:38 +02:00
|
|
|
DeleteDemands="DeleteAll, EmployeeView_Delete"
|
|
|
|
|
CreateDemands="CreateAll, EmployeeView_Create"
|
2018-05-20 13:19:28 +02:00
|
|
|
ArchiveObject="MainNavigationView_ArchiveObject"
|
2021-09-30 15:31:13 +02:00
|
|
|
ContentGroupStyle="{StaticResource EmployeeNavigationStyle}"
|
|
|
|
|
MainListItemStyle="{StaticResource EmployeeDetailStyle}"
|
|
|
|
|
HistoryListItemStyle="{StaticResource SearchSimpleStyle}"
|
2016-06-27 01:45:38 +02:00
|
|
|
OnReloadData="MainNavigationView_OnReloadData"/>
|
|
|
|
|
</Grid>
|
2021-09-30 12:21:32 +02:00
|
|
|
<!-- MainListItemStyle="{DynamicResource SearchDetailStyle}" -->
|
2016-06-27 01:45:38 +02:00
|
|
|
</localView:BeWoView>
|