# Conflicts: # BeWo/BeWo.csproj # BeWo/BeWoApp.xaml.cs # BeWo/ServiceProxy/GeneratedAiEnhancedService.cs # BeWo/Services/BeWoControlFactory.cs # BeWo/Services/BeWoWindowFactory.cs # BeWo/Services/BeWoWindowService.cs # BeWo/Services/IControlFactory.cs # BeWo/Services/IWindowFactory.cs # BeWo/Services/IWindowService.cs # BeWo/View/BeWoFileView.xaml # BeWo/View/Detail/Report/AbwesenheitsView.xaml # BeWo/View/Windows/AnimatedBeWoWindow.xaml.cs # BeWo/app.config # BeWoAllReports.sln # BeWoPlanerMobil.sln # BeWoPlanerMobil/.vs/BeWoPlanerMobil.csproj.dtbcache.json # BeWoTests.sln # Dakota/DakotaUtils.cs # Dakota/Logic/DakotaInfoCreator.cs # Dakota/Models/DakotaFile.cs # Data/Access/GenericDAO.cs # Data/Access/SearchDAO.cs # Data/Data.csproj # Host/Web.config # Server/Components/ServerUtils/ApiFacade/WebClientFacade.cs # Service/BeWoServiceEnums.cs # Service/Core/ServiceHelper.cs # Service/Core/ServiceValidator.cs # Service/Extensions/ServiceEnumExtension.cs # Service/Service.csproj # Service/ServiceContracts/Enhanced/IAiEnhancedService.cs # Service/ServiceContracts/Enhanced/IOperationsEnhancedService.cs # Service/ServiceImplementations/EmployeeServiceImp.cs # Service/ServiceImplementations/Enhanced/AiEnhancedServiceImp.cs # Service/ServiceImplementations/Enhanced/OperationsEnhancedServiceImp.cs # Service/ServiceProxy/OpenWebUIFacade.cs # Service/ServiceProxy/ServiceFacade.cs # Service/ServiceUtils/DistanceCalculator/GoogleDistanceMatrixAPI.cs # Shared/BeWoEntityEnums.cs # Shared/Core/AppError.cs # Shared/Core/Facade/WebClientFacade.cs # Shared/Core/WebClientFacade.cs # Shared/Shared.csproj
55 lines
2.0 KiB
XML
55 lines
2.0 KiB
XML
<Window
|
|
x:Class="BeWo.View.Windows.AnimatedBeWoWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:core="clr-namespace:BeWo.View.Core"
|
|
xmlns:view="clr-namespace:BeWo.ViewModel.View"
|
|
Title="BeWoPlaner"
|
|
MinWidth="300"
|
|
MinHeight="300"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
Closed="Window_Closed"
|
|
Closing="Window_Closing"
|
|
Loaded="Window_Loaded"
|
|
ResizeMode="CanResizeWithGrip"
|
|
SnapsToDevicePixels="True"
|
|
TextOptions.TextFormattingMode="Display"
|
|
WindowStartupLocation="CenterOwner"
|
|
WindowStyle="None">
|
|
<Window.DataContext>
|
|
<view:WindowViewModel />
|
|
</Window.DataContext>
|
|
<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="..\..\Styles\ModernOrangeBlack.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Window.Resources>
|
|
<Window.Triggers>
|
|
<EventTrigger RoutedEvent="Loaded">
|
|
<BeginStoryboard Storyboard="{StaticResource WindowLoadedAnimation}" />
|
|
</EventTrigger>
|
|
</Window.Triggers>
|
|
<Grid x:Name="rootGrid">
|
|
<GroupBox
|
|
x:Name="rootGroupBox"
|
|
MouseDoubleClick="RootGroupBox_OnMouseDoubleClick"
|
|
MouseLeftButtonDown="RootGroupBox_OnMouseLeftButtonDown"
|
|
Style="{DynamicResource MainContentGroupBoxWithoutMaximizeBtnStyle}" />
|
|
<Grid
|
|
x:Name="_WaitingLayer"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"
|
|
Panel.ZIndex="1000"
|
|
Background="#40FFFFFF"
|
|
Focusable="True"
|
|
IsHitTestVisible="True"
|
|
KeyboardNavigation.IsTabStop="True"
|
|
Visibility="{Binding IsWaiting, Converter={StaticResource BoolVisibilityConverter}}">
|
|
<core:WaitLayer3 HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|