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"
|
2022-12-15 23:16:04 +01:00
|
|
|
xmlns:t="clr-namespace:BeWo.MultiLanguage.Markup"
|
2017-11-06 10:30:25 +01:00
|
|
|
Loaded="OnLoaded">
|
2016-06-27 01:45:38 +02:00
|
|
|
<Grid>
|
|
|
|
|
<localNavView:MainNavigationView
|
|
|
|
|
x:Name="mainNavigationView"
|
2022-12-15 23:34:20 +01:00
|
|
|
MainGroupHeader="{markup:Translate MitarbeiterPlural}"
|
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"
|
2016-06-27 01:45:38 +02:00
|
|
|
ContentGroupStyle="{StaticResource EmployeeNavigationStyle}"
|
2018-05-20 13:19:28 +02:00
|
|
|
MainListItemStyle="{StaticResource EmployeeDetailStyle}"
|
2016-06-27 01:45:38 +02:00
|
|
|
HistoryListItemStyle="{StaticResource SearchSimpleStyle}"
|
|
|
|
|
OnReloadData="MainNavigationView_OnReloadData"/>
|
2022-12-15 23:16:04 +01:00
|
|
|
|
|
|
|
|
<TextBlock Grid.Column="1" x:Name="textblock_link" VerticalAlignment="Bottom" Margin="0,0,25,15" HorizontalAlignment="Right" FontSize="16">
|
|
|
|
|
<Hyperlink x:Name="linkNewLicense" TargetName="newWindow" Foreground="#FFFFFF" NavigateUri="http://www.bewoplaner.de" RequestNavigate="LinkNewLicense_OnRequestNavigate">
|
2022-12-15 23:34:20 +01:00
|
|
|
<Run Text="{markup:Translate Neue Mitarbeiterlizenz bestellen}" />
|
2022-12-15 23:16:04 +01:00
|
|
|
</Hyperlink>
|
|
|
|
|
</TextBlock>
|
|
|
|
|
</Grid>
|
2018-05-20 13:19:28 +02:00
|
|
|
<!-- MainListItemStyle="{StaticResource SearchDetailStyle}" -->
|
2016-06-27 01:45:38 +02:00
|
|
|
</localView:BeWoView>
|