commitaf28476b76Merge:b76e16946c3b6a1e9cAuthor: Marcel Hirschle <marcel.hirschle@ownsoft.de> Date: Thu Jun 20 11:53:31 2024 +0200 Merge branch 'master' of ssh://float.ownsoft.de/git/beyondSoft/BeWo # Conflicts: # ReportImp/VkmHamm/CustomerMitarbeiterstundenkontoBerechnung.cs commitb76e169462Author: Marcel Hirschle <marcel.hirschle@ownsoft.de> Date: Thu Jun 20 11:40:08 2024 +0200 MH: vkm hamm stundenkonto commitc3b6a1e9c0Author: Christian <christian.baeurle@beyondsoft.de> Date: Thu Jun 20 10:58:05 2024 +0200 Mergemarker entfernt commit5ff8fe343bMerge:c1aa61f05fc57725f4Author: Christian <christian.baeurle@beyondsoft.de> Date: Thu Jun 20 10:52:16 2024 +0200 Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo commitc1aa61f058Merge:12faccb711c0a94c60Author: Christian <christian.baeurle@beyondsoft.de> Date: Thu Jun 20 10:51:59 2024 +0200 Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo # Conflicts: # BeWo/ServiceProxy/Generated.cs # Data/Security/UserRightHelper.cs # Shared/BeWoEntityEnums.cs # Shared/Core/EnumTranslations.cs commit12faccb71bAuthor: Christian <christian.baeurle@beyondsoft.de> Date: Wed Jun 19 16:13:56 2024 +0200 Perseh Hilfeplan Import + KI Prototyp,
68 lines
4.3 KiB
XML
68 lines
4.3 KiB
XML
<localView:BeWoView x:Class="BeWo.View.Navigation.SupportConceptNavigationView"
|
|
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:t="clr-namespace:BeWo.MultiLanguage.Markup"
|
|
Loaded="OnLoaded">
|
|
<Grid>
|
|
<Grid.Resources>
|
|
<DataTemplate x:Key="SupportConceptDetailInfoTemplate">
|
|
<ListView ItemsSource="{Binding}" Margin="5" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" Background="{x:Null}" BorderBrush="{x:Null}">
|
|
<ListView.ItemContainerStyle>
|
|
<Style TargetType="{x:Type ListBoxItem}">
|
|
<Setter Property="Focusable" Value="false" />
|
|
</Style>
|
|
</ListView.ItemContainerStyle>
|
|
<ListView.Resources>
|
|
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
|
|
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent" />
|
|
</ListView.Resources>
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid>
|
|
<Border Margin="0 0 0 3" x:Name="ItemBorder" CornerRadius="5" MinHeight="30" Background="#FF000000">
|
|
<Border.OpacityMask>
|
|
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
<GradientStop Color="#19000000" Offset="0" />
|
|
<GradientStop Color="#26000000" Offset="1" />
|
|
</LinearGradientBrush>
|
|
</Border.OpacityMask>
|
|
</Border>
|
|
<StackPanel Margin="5">
|
|
|
|
<TextBlock Text="{Binding CostBearer, Converter={StaticResource StringFormatConverter}, ConverterParameter={t:Translate Kostenträger: \{0\}}}" FontSize="14" Foreground="#FFD2D2D2" FontFamily="Microsoft Sans Serif" />
|
|
|
|
<TextBlock FontSize="12" Foreground="#FFD2D2D2" FontFamily="Microsoft Sans Serif" Margin="5 5 0 0"
|
|
Text="{Binding ApprovedHours, Converter={StaticResource StringFormatConverter}, ConverterParameter=Genehmigte Stunden: \{0:0.##\}}" />
|
|
|
|
<TextBlock FontSize="12" Foreground="#FFD2D2D2" FontFamily="Microsoft Sans Serif" Margin="5 2 0 0"
|
|
Text="{Binding RecordedHours, Converter={StaticResource StringFormatConverter}, ConverterParameter=Geleistete Stunden: \{0:0.##\}}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</DataTemplate>
|
|
</Grid.Resources>
|
|
<localNavView:MainNavigationView x:Name="mainNavigationView"
|
|
MainGroupHeader="{t:Translate Hilfepläne}"
|
|
CreateNewObject="mainNavigationView_CreateNewObject"
|
|
OpenObject="mainNavigationView_OpenObject"
|
|
DeleteObject="mainNavigationView_DeleteObject"
|
|
ArchiveObject="mainNavigationView_ArchiveObject"
|
|
DeleteDemands="DeleteAll, SupportConceptView_Delete"
|
|
CreateDemands="CreateAll, SupportConceptView_Create"
|
|
ExcelExport="mainNavigationView_ExcelExport"
|
|
Print="mainNavigationView_Print"
|
|
CopyObject="MainNavigation_CopyObject"
|
|
ImportObjects="MainNavigationView_OnImportObjects"
|
|
ShowDetailsPanel="True"
|
|
DetailPanelItemTemplate="{StaticResource SupportConceptDetailInfoTemplate}"
|
|
ContentGroupStyle="{StaticResource SupportConceptNavigationStyle}"
|
|
MainListItemStyle="{StaticResource SupportConceptDetailStyle}"
|
|
HistoryListItemStyle="{StaticResource SupportConceptHistoryStyle}"
|
|
OpenMailMergeWindow="MainNavigationView_OnOpenMailMergeWindow"
|
|
OnReloadData="MainNavigationView_OnReloadData"/>
|
|
</Grid>
|
|
</localView:BeWoView> |