Files
BeWoPlaner/BeWo/View/Navigation/EmployeeNavigationView.xaml
Christian 8f270ee422 Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo
# Conflicts:
#	BeWo/View/Navigation/EmployeeNavigationView.xaml
#	BeWo/View/Navigation/UserNavigationView.xaml
#	BeWoAllReports.sln
#	Service/Plugins/PluginLoader.cs
2022-12-15 23:34:20 +01:00

32 lines
1.9 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:localView="clr-namespace:BeWo.View"
xmlns:localNavView="clr-namespace:BeWo.View.Navigation"
xmlns:markup="clr-namespace:BeWo.MultiLanguage.Markup"
xmlns:t="clr-namespace:BeWo.MultiLanguage.Markup"
Loaded="OnLoaded">
<Grid>
<localNavView:MainNavigationView
x:Name="mainNavigationView"
MainGroupHeader="{markup:Translate MitarbeiterPlural}"
CreateNewObject="MainNavigationView_CreateNewObject"
OpenObject="MainNavigationView_OpenObject"
DeleteObject="MainNavigationView_DeleteObject"
ExcelExport="MainNavigationView_ExcelExport"
DeleteDemands="DeleteAll, EmployeeView_Delete"
CreateDemands="CreateAll, EmployeeView_Create"
ArchiveObject="MainNavigationView_ArchiveObject"
ContentGroupStyle="{StaticResource EmployeeNavigationStyle}"
MainListItemStyle="{StaticResource EmployeeDetailStyle}"
HistoryListItemStyle="{StaticResource SearchSimpleStyle}"
OnReloadData="MainNavigationView_OnReloadData"/>
<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">
<Run Text="{markup:Translate Neue Mitarbeiterlizenz bestellen}" />
</Hyperlink>
</TextBlock>
</Grid>
<!-- MainListItemStyle="{StaticResource SearchDetailStyle}" -->
</localView:BeWoView>