32 lines
1.6 KiB
XML
32 lines
1.6 KiB
XML
|
|
<localView:BeWoView
|
|
x:Class="BeWo.View.Navigation.UserNavigationView"
|
|
xmlns:markup="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
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"
|
|
Loaded="OnLoaded">
|
|
<Grid>
|
|
<localNavView:MainNavigationView
|
|
x:Name="mainNavigationView"
|
|
MainGroupHeader="{markup:Translate Benutzer}"
|
|
CreateNewObject="mainNavigationView_CreateNewObject"
|
|
OpenObject="mainNavigationView_OpenObject"
|
|
DeleteObject="mainNavigationView_DeleteObject"
|
|
DeleteDemands="DeleteAll, UserView_Delete"
|
|
CreateDemands="CreateAll, UserView_Create"
|
|
ExcelExport="mainNavigationView_ExcelExport"
|
|
Print="mainNavigationView_Print"
|
|
ContentGroupStyle="{StaticResource UserNavigationStyle}"
|
|
MainListItemStyle="{StaticResource SearchDetailStyle}"
|
|
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 Lizenz bestellen}" />
|
|
</Hyperlink>
|
|
</TextBlock>
|
|
</Grid>
|
|
</localView:BeWoView> |