45 lines
2.1 KiB
XML
45 lines
2.1 KiB
XML
<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:localNavView="clr-namespace:BeWo.View.Navigation"
|
|
xmlns:localView="clr-namespace:BeWo.View"
|
|
xmlns:markup="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
xmlns:t="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
Loaded="OnLoaded">
|
|
<Grid>
|
|
<localNavView:MainNavigationView
|
|
x:Name="mainNavigationView"
|
|
ArchiveObject="MainNavigationView_ArchiveObject"
|
|
ContentGroupStyle="{StaticResource EmployeeNavigationStyle}"
|
|
CreateDemands="CreateAll, EmployeeView_Create"
|
|
CreateNewObject="MainNavigationView_CreateNewObject"
|
|
DeleteDemands="DeleteAll, EmployeeView_Delete"
|
|
DeleteObject="MainNavigationView_DeleteObject"
|
|
ExcelExport="MainNavigationView_ExcelExport"
|
|
HistoryListItemStyle="{StaticResource SearchSimpleStyle}"
|
|
MainGroupHeader="{markup:Translate MitarbeiterPlural}"
|
|
MainListItemStyle="{StaticResource EmployeeDetailStyle}"
|
|
OnReloadData="MainNavigationView_OnReloadData"
|
|
OpenObject="MainNavigationView_OpenObject"
|
|
Print="mainNavigationView_Print" />
|
|
|
|
<TextBlock
|
|
x:Name="textblock_link"
|
|
Grid.Column="1"
|
|
Margin="0,0,25,15"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Bottom"
|
|
FontSize="16">
|
|
<Hyperlink
|
|
x:Name="linkNewLicense"
|
|
Foreground="#FFFFFF"
|
|
NavigateUri="http://www.bewoplaner.de"
|
|
RequestNavigate="LinkNewLicense_OnRequestNavigate"
|
|
TargetName="newWindow">
|
|
<Run Text="{markup:Translate Neue Mitarbeiterlizenz bestellen}" />
|
|
</Hyperlink>
|
|
</TextBlock>
|
|
</Grid>
|
|
<!-- MainListItemStyle="{StaticResource SearchDetailStyle}" -->
|
|
</localView:BeWoView> |