initial
BIN
2026-03-05 09_54_30_C4IT_CustomerPanel.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
42
App.config
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" /></startup>
|
||||||
|
<runtime>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.IdentityModel.Abstractions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-8.15.0.0" newVersion="8.15.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.1" newVersion="10.0.0.1" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.5.0" newVersion="4.0.5.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-6.0.3.0" newVersion="6.0.3.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.5.0" newVersion="4.0.5.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Formats.Asn1" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.1" newVersion="10.0.0.1" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Drawing.Common" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
</runtime>
|
||||||
|
</configuration>
|
||||||
22
App.xaml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<Application x:Class="C4IT_CustomerPanel.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
StartupUri="MainWindow.xaml"
|
||||||
|
xmlns:po="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
mc:Ignorable="po"
|
||||||
|
Startup="Appplication_Startup"
|
||||||
|
xmlns:help="clr-namespace:C4IT_CustomerPanel.libs" Exit="Application_Exit"
|
||||||
|
>
|
||||||
|
<Application.Resources>
|
||||||
|
<ResourceDictionary>
|
||||||
|
<ResourceDictionary.MergedDictionaries>
|
||||||
|
<ResourceDictionary Source="/themes/ThemeDarkMain.xaml"/>
|
||||||
|
<ResourceDictionary Source="/themes/ThemeDarkNav.xaml"/>
|
||||||
|
<ResourceDictionary Source="/F4SD-ResourceDictionaries/LightModeResources.xaml"/>
|
||||||
|
<ResourceDictionary Source="/F4SD-ResourceDictionaries/CheckBoxResources.xaml"/>
|
||||||
|
<ResourceDictionary Source="/F4SD-ResourceDictionaries/RadioButtonResources.xaml"/>
|
||||||
|
</ResourceDictionary.MergedDictionaries>
|
||||||
|
</ResourceDictionary>
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
||||||
87
App.xaml.cs
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using C4IT_CustomerPanel.libs;
|
||||||
|
using C4IT_CustomerPanel.UserControls;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Net;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
using C4IT.Security;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Windows.Data;
|
||||||
|
|
||||||
|
using C4IT.Logging;
|
||||||
|
using System.Reflection;
|
||||||
|
using static C4IT.Logging.cLogManager;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using C4IT.Matrix42.WebClient;
|
||||||
|
|
||||||
|
namespace C4IT_CustomerPanel
|
||||||
|
{
|
||||||
|
|
||||||
|
public partial class App
|
||||||
|
{
|
||||||
|
static public Mutex AppMutex = null;
|
||||||
|
|
||||||
|
private const string PW1 = "XLaqQKKE1VVvGYzotnOWa2kpA7FwmJ+jmzZDvvXnPDRL8WPIVq1jTw8LB2ngwDaVyVzAG7q5KAl8jllGPle+MSThAfKTT27XqPSKtkRUQYvoB5AMdUQnpjKYyM+Vb8pK6fRDBNnCUnjdY2tWXXAUXarG+h9oDI+zo6v4X+5k6PFZ1Dc0/UYjoJTU1UBQciaoxfyb552qAjqNEtFvbWdkY3rhrIILx/E6+HmMHOWWXu4yuvr2otv0Icygc4PyJ8V2DBesBjGQVbtDG5ix2LXp6m4sN2omBcx9oMROtNae9jQo7KMHC2tTt1O9yZV0hWrsoHUFeZdCez7yoU10Ir8PEL0Cu2nLVymWFGQ27ot1uhiKSOZP8I5s1wZp0IDFbQ/vhfLllf4ElEaCbM61CCa3oUMg5jjxvrIbIc4kYRAQoF0rrn0CcqrB2mt18RMe0OP09tZ6Y1LsqdO9OV5oZAVoIKz3h26P3ov6I4flajFE18Vhe7KW/snZNlQnJVBcwaF0rLBsl0lmkb29EHXhzHEZEi//UnxA++DatAcyAgZJxyBgTJcac/DVxz4xA1AV4SBZTWoHgSjzawCn5VuhJmPsHB0hlYEVD+V7gSg6AofnoPKhgDGlYLAOae83anreSWVXMngzRSGOh9q5XzuBuGH5isiicb8nYNSfdVbfi2WIiHl0ins98DdJHmCgjgc4nXdZv7k6Ya10ZDJnTdgnJXVDrr4gfyE7p7O/uE6bz3gnJH5YZI/RQHMy4Q7WM29g//lkVLE7YBcbgZSL94DHNjkMAMn6DEBMOe4vZaYVnbjNTzq4oMfZTWV0yh1JAeQMa+YrIlWWmdUHlkONU9HEBzyp5Tq/adjarGoImwm7u6HZEcS8W2qwRiHCWLSJFTPbM4XCmdxnEfNGTyc7Tbbtnaxf6A17XE1YTQ4kwIpqZdDc8yzLpSFFX4I7hVcRWc2MT9QO/Ee+V4B0zAfgiFBAb8KNgCD9cP3KOW+XwLyDlIDZElC0qOKPpjqLqLRecNaot6toMVn/DisSDXFm/Fxn/D1Ff04bzhwxR4hRNVq0k1DtekvmVxJD5ygI/Y5J2YmP5rq+oFtFQD3uagTCwHPc11Thkxr5KPfIIShe3WMJrszXW8rNbtK6pZVaDrUVfp92l+2ayweFDBoF3HKbcorvHLUGD8x/YyihPLXLMPWB3vhVUKp0Q79R9RV/hB+X2Df18UAdRTYKpRUlYI8Q1r8+du7Y0EYen2BIWivVi/SElcb0xjd2ZHbAas2m8oJes4Sawgt8OUuzcBFYfccI1toVWjEnRadbkMa5f7BfQnOYSlswagoFT10I0RKKNAJZf0cPf0bF5Y/KwbqDWwxVco4GuyYdyK4jUxj1dqxUiRY8G4m7NJA6bDVmbY/2E6sqrLqRXAERtm0dT8xdw1fTAomODuVnPeLbf4evWacVVrc+yT3vTZYOuoILY2Pt+20rRi2V0RVRVZlpYyLjifiM+XKd7Fv9V2842aOnRiFju24624kU86E+vJBDyBmAV2YMMLVpUZhDv9F/yWnEU0bCG62ghJcz5woPGjAlIjV2Z8ESr+J3Gr8A7uWcCQ2I5mN422gPFliJ";
|
||||||
|
private const string PPH = "40pXkPBCeQZavJlnzX8c";
|
||||||
|
|
||||||
|
public static NetworkCredential DefaultCredentials = null;
|
||||||
|
|
||||||
|
private void Appplication_Startup(object sender, StartupEventArgs e)
|
||||||
|
{
|
||||||
|
Current.Exit += Application_Exit;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
AppMutex = new Mutex(false, "CustomerPanel_72B0644F-861F-4325-B722-3C7B3F51FC2A");
|
||||||
|
if (!AppMutex.WaitOne(0))
|
||||||
|
{
|
||||||
|
Console.WriteLine("Application already started, exiting...");
|
||||||
|
Current.Shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
Console.WriteLine("Cannot create application mutex, exiting...");
|
||||||
|
Application.Current.Shutdown();
|
||||||
|
}
|
||||||
|
#if DebugWithAttach
|
||||||
|
if (!Debugger.IsAttached)
|
||||||
|
{
|
||||||
|
Debugger.Launch();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
cM42WebClientV2.IgnoreHttpsCertificateErrors();
|
||||||
|
cLogManagerFile.CreateInstance(false, SubFolder: "Logs");
|
||||||
|
DefaultLogger.LogEntry(LogLevels.Info, "=================================================");
|
||||||
|
DefaultLogger.LogEntry(LogLevels.Info, "Customer Panel started");
|
||||||
|
DefaultLogger.LogAssemblyInfo();
|
||||||
|
LogMethodBegin(MethodBase.GetCurrentMethod());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Application_Exit(object sender, ExitEventArgs e)
|
||||||
|
{
|
||||||
|
if (AppMutex != null)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
AppMutex.ReleaseMutex();
|
||||||
|
}
|
||||||
|
catch { };
|
||||||
|
try
|
||||||
|
{
|
||||||
|
AppMutex.Dispose();
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
|
AppMutex = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>C4IT.Matrix.MsGatewayAuthentication</RootNamespace>
|
||||||
|
<AssemblyName>C4IT.Matrix.MsGatewayAuthentication</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<Deterministic>false</Deterministic>
|
||||||
|
<SccProjectName>SAK</SccProjectName>
|
||||||
|
<SccLocalPath>SAK</SccLocalPath>
|
||||||
|
<SccAuxPath>SAK</SccAuxPath>
|
||||||
|
<SccProvider>SAK</SccProvider>
|
||||||
|
<NuGetPackageImportStamp>
|
||||||
|
</NuGetPackageImportStamp>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Microsoft.Identity.Client, Version=4.79.2.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Microsoft.Identity.Client.4.79.2\lib\net472\Microsoft.Identity.Client.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.IdentityModel.Abstractions, Version=8.15.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Microsoft.IdentityModel.Abstractions.8.15.0\lib\net472\Microsoft.IdentityModel.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Buffers, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Buffers.4.6.1\lib\net462\System.Buffers.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Diagnostics.DiagnosticSource, Version=10.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Diagnostics.DiagnosticSource.10.0.1\lib\net462\System.Diagnostics.DiagnosticSource.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Formats.Asn1, Version=10.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Formats.Asn1.10.0.1\lib\net462\System.Formats.Asn1.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.IdentityModel" />
|
||||||
|
<Reference Include="System.Memory, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Memory.4.6.3\lib\net462\System.Memory.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Numerics" />
|
||||||
|
<Reference Include="System.Numerics.Vectors, Version=4.1.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Numerics.Vectors.4.6.1\lib\net462\System.Numerics.Vectors.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.1.2\lib\net462\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Windows.Forms" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="..\..\M42CommonCode\M42WebClient.V2\C4IT.Matrix42.MsGatewayAuthentication.cs">
|
||||||
|
<Link>Common\C4IT.Matrix42.MsGatewayAuthentication.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\Properties\SharedAssemblyInfo.cs">
|
||||||
|
<Link>Properties\SharedAssemblyInfo.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\C4IT.Matrix.WebClient\C4IT.Matrix.WebClient.csproj">
|
||||||
|
<Project>{b47d6aec-12a7-4350-9ad6-5f301bbb1bcd}</Project>
|
||||||
|
<Name>C4IT.Matrix.WebClient</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="app.config" />
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<Import Project="..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets" Condition="Exists('..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets'))" />
|
||||||
|
</Target>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
[assembly: AssemblyTitle("Customer Panel MS Gateway authorisation library")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
[assembly: Guid("c1c612c8-d0a1-4c5c-a503-ae63e3fe8d73")]
|
||||||
31
C4IT.Matrix.MsGatewayAuthentication/app.config
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<runtime>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-6.0.3.0" newVersion="6.0.3.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.IdentityModel.Abstractions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-8.15.0.0" newVersion="8.15.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.1" newVersion="10.0.0.1" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.5.0" newVersion="4.0.5.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.5.0" newVersion="4.0.5.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Formats.Asn1" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.1" newVersion="10.0.0.1" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
</runtime>
|
||||||
|
</configuration>
|
||||||
12
C4IT.Matrix.MsGatewayAuthentication/packages.config
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Microsoft.Identity.Client" version="4.79.2" targetFramework="net48" />
|
||||||
|
<package id="Microsoft.IdentityModel.Abstractions" version="8.15.0" targetFramework="net48" />
|
||||||
|
<package id="System.Buffers" version="4.6.1" targetFramework="net48" />
|
||||||
|
<package id="System.Diagnostics.DiagnosticSource" version="10.0.1" targetFramework="net48" />
|
||||||
|
<package id="System.Formats.Asn1" version="10.0.1" targetFramework="net48" />
|
||||||
|
<package id="System.Memory" version="4.6.3" targetFramework="net48" />
|
||||||
|
<package id="System.Numerics.Vectors" version="4.6.1" targetFramework="net48" />
|
||||||
|
<package id="System.Runtime.CompilerServices.Unsafe" version="6.1.2" targetFramework="net48" />
|
||||||
|
<package id="System.ValueTuple" version="4.6.1" targetFramework="net48" />
|
||||||
|
</packages>
|
||||||
73
C4IT.Matrix.WebClient/C4IT.Matrix.WebClient.csproj
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>C4IT.Matrix.WebClient</RootNamespace>
|
||||||
|
<AssemblyName>C4IT.Matrix.WebClient</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<Deterministic>false</Deterministic>
|
||||||
|
<SccProjectName>SAK</SccProjectName>
|
||||||
|
<SccLocalPath>SAK</SccLocalPath>
|
||||||
|
<SccAuxPath>SAK</SccAuxPath>
|
||||||
|
<SccProvider>SAK</SccProvider>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Newtonsoft.Json.13.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Web" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="..\..\..\Common Code\Logging\C4IT.Logging.LogManager.cs">
|
||||||
|
<Link>Common\C4IT.Logging.LogManager.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\..\Common Code\Logging\C4IT.Logging.LogNetwork.cs">
|
||||||
|
<Link>Common\C4IT.Logging.LogNetwork.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\M42CommonCode\M42WebClient.V2\C4IT.Matrix42.AuthorisationProviderBase.cs">
|
||||||
|
<Link>Common\C4IT.Matrix42.AuthorisationProviderBase.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\M42CommonCode\M42WebClient.V2\C4IT.Matrix42.WebClient.V2.cs">
|
||||||
|
<Link>Common\C4IT.Matrix42.WebClient.V2.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\Properties\SharedAssemblyInfo.cs">
|
||||||
|
<Link>Properties\SharedAssemblyInfo.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
12
C4IT.Matrix.WebClient/Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
[assembly: AssemblyTitle("Customer Panel API library")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
[assembly: Guid("b47d6aec-12a7-4350-9ad6-5f301bbb1bcd")]
|
||||||
4
C4IT.Matrix.WebClient/packages.config
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Newtonsoft.Json" version="13.0.4" targetFramework="net48" />
|
||||||
|
</packages>
|
||||||
BIN
C4IT_2016.ico
Normal file
|
After Width: | Height: | Size: 470 KiB |
813
C4IT_CustomerPanel.csproj
Normal file
@@ -0,0 +1,813 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{9E95139D-4312-4EDE-9136-29DAC2DEB663}</ProjectGuid>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>C4IT_CustomerPanel</RootNamespace>
|
||||||
|
<AssemblyName>Customer Panel</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
|
<SccProjectName>SAK</SccProjectName>
|
||||||
|
<SccLocalPath>SAK</SccLocalPath>
|
||||||
|
<SccAuxPath>SAK</SccAuxPath>
|
||||||
|
<SccProvider>SAK</SccProvider>
|
||||||
|
<NuGetPackageImportStamp>
|
||||||
|
</NuGetPackageImportStamp>
|
||||||
|
<PublishUrl>publish\</PublishUrl>
|
||||||
|
<Install>true</Install>
|
||||||
|
<InstallFrom>Disk</InstallFrom>
|
||||||
|
<UpdateEnabled>false</UpdateEnabled>
|
||||||
|
<UpdateMode>Foreground</UpdateMode>
|
||||||
|
<UpdateInterval>7</UpdateInterval>
|
||||||
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||||
|
<UpdatePeriodically>false</UpdatePeriodically>
|
||||||
|
<UpdateRequired>false</UpdateRequired>
|
||||||
|
<MapFileExtensions>true</MapFileExtensions>
|
||||||
|
<ProductName>C4IT Customer Panel</ProductName>
|
||||||
|
<ApplicationRevision>0</ApplicationRevision>
|
||||||
|
<ApplicationVersion>3.2.0.%2a</ApplicationVersion>
|
||||||
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
|
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||||
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
|
<LangVersion>preview</LangVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
|
||||||
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
|
<LangVersion>preview</LangVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ApplicationIcon>logo_CustomerPanel.ico</ApplicationIcon>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestCertificateThumbprint>14887566EC8BDA12A957E8221978FD585FB21F6A</ManifestCertificateThumbprint>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestKeyFile>C4IT_CustomerPanel_TemporaryKey.pfx</ManifestKeyFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<GenerateManifests>false</GenerateManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetZone>LocalIntranet</TargetZone>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup />
|
||||||
|
<PropertyGroup>
|
||||||
|
<SignManifests>false</SignManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Setup %28Release%29|AnyCPU'">
|
||||||
|
<OutputPath>bin\Setup %28Release%29\</OutputPath>
|
||||||
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
|
<LangVersion>preview</LangVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugWithAttach|AnyCPU'">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<OutputPath>bin\DebugWithAttach\</OutputPath>
|
||||||
|
<DefineConstants>TRACE;DEBUG;DebugWithAttach</DefineConstants>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<LangVersion>preview</LangVersion>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="AnimatedGif, Version=1.0.5.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\AnimatedGif.1.0.5\lib\netstandard2.0\AnimatedGif.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="C4IT-AdaptableIcons">
|
||||||
|
<HintPath>..\..\Common Code\C4IT-AdaptableIcons\C4IT-AdaptableIcons-NF\bin\Release\C4IT-AdaptableIcons.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="C4IT.API.Contracts, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>Matrix42Libs\C4IT.API.Contracts.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="ComputerInformationReport">
|
||||||
|
<HintPath>References\ComputerInformationReport.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="MaterialIcons, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\MaterialIcons.1.0.3\lib\MaterialIcons.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.Web.WebView2.Core, Version=1.0.3650.58, Culture=neutral, PublicKeyToken=2a8ab48044d2601e, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\Microsoft.Web.WebView2.1.0.3650.58\lib\net462\Microsoft.Web.WebView2.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.Web.WebView2.WinForms, Version=1.0.3650.58, Culture=neutral, PublicKeyToken=2a8ab48044d2601e, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\Microsoft.Web.WebView2.1.0.3650.58\lib\net462\Microsoft.Web.WebView2.WinForms.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.Web.WebView2.Wpf, Version=1.0.3650.58, Culture=neutral, PublicKeyToken=2a8ab48044d2601e, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\Microsoft.Web.WebView2.1.0.3650.58\lib\net462\Microsoft.Web.WebView2.Wpf.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.WindowsAPICodePack, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\Microsoft.WindowsAPICodePack.Core.1.1.0\lib\Microsoft.WindowsAPICodePack.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.WindowsAPICodePack.Shell, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\Microsoft.WindowsAPICodePack.Shell.1.1.0\lib\Microsoft.WindowsAPICodePack.Shell.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\Newtonsoft.Json.13.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Drawing.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
|
<HintPath>packages\System.Drawing.Common.10.0.1\lib\net462\System.Drawing.Common.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Management" />
|
||||||
|
<Reference Include="System.Runtime.Serialization" />
|
||||||
|
<Reference Include="System.ServiceModel" />
|
||||||
|
<Reference Include="System.Web" />
|
||||||
|
<Reference Include="System.Windows" />
|
||||||
|
<Reference Include="System.Windows.Forms" />
|
||||||
|
<Reference Include="System.Windows.Forms.DataVisualization" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xaml">
|
||||||
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="WindowsBase" />
|
||||||
|
<Reference Include="PresentationCore" />
|
||||||
|
<Reference Include="PresentationFramework" />
|
||||||
|
<Reference Include="WindowsFormsIntegration" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ApplicationDefinition Include="App.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</ApplicationDefinition>
|
||||||
|
<Compile Include="..\..\Common Code\Configuration\C4IT.Configuration.ConfigHelper.cs">
|
||||||
|
<Link>Common\C4IT.Configuration.ConfigHelper.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\Common Code\Graphics\C4IT.Graphics.NotifyerSupport.cs">
|
||||||
|
<Link>Common\C4IT.Graphics.NotifyerSupport.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\Common Code\MultiLanguage\C4IT.MultiLanguage.MultiLanguageSupport.cs">
|
||||||
|
<Link>Common\C4IT.MultiLanguage.MultiLanguageSupport.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\Common Code\Security\C4IT.Security.SecurePassword.cs">
|
||||||
|
<Link>Common\C4IT.Security.SecurePassword.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\Common Code\XML\C4IT.XML.ConfigParsing.cs">
|
||||||
|
<Link>Common\C4IT.XML.ConfigParsing.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\CustomerPanel API\C4IT.API\CustomerPanelSecurePassword.cs">
|
||||||
|
<Link>Common\CustomerPanelSecurePassword.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="..\..\CustomerPanel API\C4IT.API\PrivateCustomerPanelSecurePassword.cs">
|
||||||
|
<Link>Common\PrivateCustomerPanelSecurePassword.cs</Link>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Converter\BlurEffectConverter.cs" />
|
||||||
|
<Compile Include="Converter\EnumerationComparisonConverter.cs" />
|
||||||
|
<Compile Include="Converter\LanguageDefinitionsConverter.cs" />
|
||||||
|
<Compile Include="Converter\VisibilityConverters.cs" />
|
||||||
|
<Compile Include="forms\AuthenticationSettings\AuthenticationSettings.xaml.cs">
|
||||||
|
<DependentUpon>AuthenticationSettings.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="forms\AuthenticationSettings\cAuthenticationSettingsController.cs" />
|
||||||
|
<Compile Include="forms\CPM42FormsAuthentication.xaml.cs">
|
||||||
|
<DependentUpon>CPM42FormsAuthentication.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="libs\ConvertHelper.cs" />
|
||||||
|
<Compile Include="libs\Disposer.cs" />
|
||||||
|
<Compile Include="libs\journalAction.cs" />
|
||||||
|
<Compile Include="libs\staticContracts.cs" />
|
||||||
|
<Compile Include="libs\UserInfo.cs" />
|
||||||
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Properties\SharedAssemblyInfo.cs" />
|
||||||
|
<Compile Include="UserControls\AnnouncementListItem.xaml.cs">
|
||||||
|
<DependentUpon>AnnouncementListItem.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\Announcements.xaml.cs">
|
||||||
|
<DependentUpon>Announcements.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\ComputerInformation.xaml.cs">
|
||||||
|
<DependentUpon>ComputerInformation.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\CustomLinks.xaml.cs">
|
||||||
|
<DependentUpon>CustomLinks.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\CustomProgressBar.xaml.cs">
|
||||||
|
<DependentUpon>CustomProgressBar.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\IncidentListItem.xaml.cs">
|
||||||
|
<DependentUpon>IncidentListItem.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\Incidents.xaml.cs">
|
||||||
|
<DependentUpon>Incidents.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\Navigation.xaml.cs">
|
||||||
|
<DependentUpon>Navigation.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\PasswordInputBox.xaml.cs">
|
||||||
|
<DependentUpon>PasswordInputBox.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="UserControls\PortalSearch.xaml.cs">
|
||||||
|
<DependentUpon>PortalSearch.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Page Include="F4SD-ResourceDictionaries\DarkModeResources.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="F4SD-ResourceDictionaries\LightModeResources.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="F4SD-ResourceDictionaries\RadioButtonResources.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="forms\announcementForm.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="forms\AuthenticationSettings\AuthenticationSettings.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="forms\configInfo.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="forms\CPM42FormsAuthentication.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="MainWindow.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Compile Include="App.xaml.cs">
|
||||||
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
|
<SubType>Code</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="forms\announcementForm.xaml.cs">
|
||||||
|
<DependentUpon>announcementForm.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="forms\configInfo.xaml.cs">
|
||||||
|
<DependentUpon>configInfo.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="libs\configHelper.cs" />
|
||||||
|
<Compile Include="libs\converter.cs" />
|
||||||
|
<Compile Include="libs\enumsCP.cs" />
|
||||||
|
<Compile Include="libs\informationHelper.cs" />
|
||||||
|
<Compile Include="libs\versionHelper.cs" />
|
||||||
|
<Compile Include="libs\formHelper.cs" />
|
||||||
|
<Compile Include="libs\visualHelper.cs" />
|
||||||
|
<Compile Include="MainWindow.xaml.cs">
|
||||||
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||||
|
<SubType>Code</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Page Include="F4SD-ResourceDictionaries\CheckBoxResources.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="themes\ThemeDarkMain.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="themes\ThemeDarkNav.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="themes\ThemeLightMain.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="themes\ThemeLightNav.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\AnnouncementListItem.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\Announcements.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\ComputerInformation.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\CustomLinks.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\CustomProgressBar.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\IncidentListItem.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\Incidents.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\Navigation.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\PasswordInputBox.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
<Page Include="UserControls\PortalSearch.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs">
|
||||||
|
<SubType>Code</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Properties\Resources.de.Designer.cs">
|
||||||
|
<DependentUpon>Resources.de.resx</DependentUpon>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Properties\Settings.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
</Compile>
|
||||||
|
<EmbeddedResource Include="Properties\generateReport.resx">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Properties\Resources.de.resx">
|
||||||
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.de.Designer.cs</LastGenOutput>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<None Include="Config\config\LanguageDefinitions.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="Config\LanguageDefinitions.xsd">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
<None Include="Properties\app.manifest" />
|
||||||
|
<None Include="Properties\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<AppDesigner Include="Properties\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 und x64%29</ProductName>
|
||||||
|
<Install>true</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\Info_Light.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\32x32\Matrix42.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="Resources\bg.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\top.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\main.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\top2.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\consulting4it-header1.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\main_abstract2.jpg">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\top_abstract2.jpg">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\main_abtract2.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\tabulator_inaktiv_abstract.jpg">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\tabulator_aktiv_abstract.jpg">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\info.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\ssp.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\info1.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\Magnify.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\Matrix42.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\inaktiv\Magnify.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\inaktiv\Matrix42.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\C4IT_2016.ico">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\main_abstract2.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\left_abstract.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\left_cp.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\top_cp.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.book.perspective.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.home.gps.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.information.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.book.perspective.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.home.gps.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.information.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.information.circle.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.magnify.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.clear.reflect.horizontal.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.clear.reflect.horizontal.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.cart.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.network.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.monitor.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.cart.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.folder.ellipsis.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.refresh.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.reset.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.clipboard.variant.text.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.clipboard.variant.text.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.newspaper.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.newspaper.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.network.server.disconnect.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.checkmark.thick.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.checkmark.thick.unchecked.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.checkmark.cross.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.window.maximize.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.window.maximize.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.people.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.input.question.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="Resources\appbar_input_question.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.window.maximize.black.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="Resources\Germany-Flag-icon.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="Resources\United-Kingdom-Flag-icon.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\Matrix42_16.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\OpenDocument_16.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Resources\StateOverlays\OverlayOffline_15.png" />
|
||||||
|
<Resource Include="Resources\icons\light\appbar.lightning.png" />
|
||||||
|
<Resource Include="Resources\icons\light\appbar.new.window.png" />
|
||||||
|
<Resource Include="Resources\icons\light\appbar.speakerphone.png" />
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.new.window.png" />
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.speakerphone.png" />
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.remotehost.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.remotehost.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.star.png" />
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.star.png" />
|
||||||
|
<Resource Include="Resources\icons\logo_CustomerPanel.ico" />
|
||||||
|
<Resource Include="logo_CustomerPanel.ico" />
|
||||||
|
<EmbeddedResource Include="Resources\logo_CustomerPanel.ico" />
|
||||||
|
<Resource Include="C4IT_2016.ico" />
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.folder.ellipsis.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.magnify.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.network.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.network.server.disconnect.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.people.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.refresh.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.reset.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.monitor.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.page.copy.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.page.copy.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\SystemLanguage.png" />
|
||||||
|
<None Include="Resources\NotifyByOS.png" />
|
||||||
|
<None Include="Resources\NotifyMenu.png" />
|
||||||
|
<None Include="Resources\NotifyByCP.png" />
|
||||||
|
<None Include="Resources\CloseMenu.png" />
|
||||||
|
<None Include="Resources\SettingsMenu.png" />
|
||||||
|
<None Include="Resources\PresentationModeOff.png" />
|
||||||
|
<None Include="Resources\PresentationModeOn.png" />
|
||||||
|
<EmbeddedResource Include="Resources\C4IT_2016.ico" />
|
||||||
|
<Resource Include="Resources\icons\light\appbar.network.server.connecting.png" />
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.network.server.connecting.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\NewContent\OverlayNewContent_13.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\NewContent\OverlayNewContent_15.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\NewContent\OverlayNewContent_19.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\NewContent\OverlayNewContent_23.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\NewContent\OverlayNewContent_33.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\NewContent\OverlayNewContent_09.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\Offline\OverlayOffline_13.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\Offline\OverlayOffline_15.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\Offline\OverlayOffline_19.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\Offline\OverlayOffline_23.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\Offline\OverlayOffline_33.png" />
|
||||||
|
<EmbeddedResource Include="Resources\StateOverlays\Offline\OverlayOffline_09.png" />
|
||||||
|
<Resource Include="Resources\StateOverlays\OverlayNewContentButton.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\dark\appbar.list.check.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
<Resource Include="Resources\icons\light\appbar.list.check.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="Common\ComputerInformationReport.dll">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<Resource Include="Config\config\LanguageDefinitions.xml" />
|
||||||
|
<Content Include="ExternalLibraries\C4IT-AdaptableIcons.dll" />
|
||||||
|
<EmbeddedResource Include="Config\LanguageDefinitions.xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="C4IT.Matrix.MsGatewayAuthentication\C4IT.Matrix.MsGatewayAuthentication.csproj">
|
||||||
|
<Project>{c1c612c8-d0a1-4c5c-a503-ae63e3fe8d73}</Project>
|
||||||
|
<Name>C4IT.Matrix.MsGatewayAuthentication</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="C4IT.Matrix.WebClient\C4IT.Matrix.WebClient.csproj">
|
||||||
|
<Project>{b47d6aec-12a7-4350-9ad6-5f301bbb1bcd}</Project>
|
||||||
|
<Name>C4IT.Matrix.WebClient</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
<Import Project="packages\Microsoft.Web.WebView2.1.0.3650.58\build\Microsoft.Web.WebView2.targets" Condition="Exists('packages\Microsoft.Web.WebView2.1.0.3650.58\build\Microsoft.Web.WebView2.targets')" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('packages\Microsoft.Web.WebView2.1.0.3650.58\build\Microsoft.Web.WebView2.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.Web.WebView2.1.0.3650.58\build\Microsoft.Web.WebView2.targets'))" />
|
||||||
|
</Target>
|
||||||
|
</Project>
|
||||||
109
C4IT_CustomerPanel.sln
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.10.35122.118
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "C4IT_CustomerPanel", "C4IT_CustomerPanel.csproj", "{9E95139D-4312-4EDE-9136-29DAC2DEB663}"
|
||||||
|
EndProject
|
||||||
|
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "Setup", "Setup\Setup.wixproj", "{29F7A771-BC71-40AA-888A-E8569323EF02}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "C4IT.Matrix.WebClient", "C4IT.Matrix.WebClient\C4IT.Matrix.WebClient.csproj", "{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "C4IT.Matrix.MsGatewayAuthentication", "C4IT.Matrix.MsGatewayAuthentication\C4IT.Matrix.MsGatewayAuthentication.csproj", "{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
DebugWithAttach|Any CPU = DebugWithAttach|Any CPU
|
||||||
|
DebugWithAttach|x86 = DebugWithAttach|x86
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
Setup (Release)|Any CPU = Setup (Release)|Any CPU
|
||||||
|
Setup (Release)|x86 = Setup (Release)|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.DebugWithAttach|Any CPU.ActiveCfg = DebugWithAttach|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.DebugWithAttach|Any CPU.Build.0 = DebugWithAttach|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.DebugWithAttach|x86.ActiveCfg = DebugWithAttach|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.DebugWithAttach|x86.Build.0 = DebugWithAttach|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Setup (Release)|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Setup (Release)|x86.ActiveCfg = Setup (Release)|Any CPU
|
||||||
|
{9E95139D-4312-4EDE-9136-29DAC2DEB663}.Setup (Release)|x86.Build.0 = Setup (Release)|Any CPU
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Debug|Any CPU.ActiveCfg = Debug|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Debug|x86.ActiveCfg = Debug|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Debug|x86.Build.0 = Debug|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.DebugWithAttach|Any CPU.ActiveCfg = Debug|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.DebugWithAttach|Any CPU.Build.0 = Debug|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.DebugWithAttach|x86.ActiveCfg = Debug|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.DebugWithAttach|x86.Build.0 = Debug|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Release|Any CPU.ActiveCfg = Release|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Release|x86.ActiveCfg = Release|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Release|x86.Build.0 = Release|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Setup (Release)|Any CPU.ActiveCfg = Release|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Setup (Release)|Any CPU.Build.0 = Release|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Setup (Release)|x86.ActiveCfg = Release|x86
|
||||||
|
{29F7A771-BC71-40AA-888A-E8569323EF02}.Setup (Release)|x86.Build.0 = Release|x86
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.DebugWithAttach|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.DebugWithAttach|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.DebugWithAttach|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.DebugWithAttach|x86.Build.0 = Debug|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Setup (Release)|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Setup (Release)|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{B47D6AEC-12A7-4350-9AD6-5F301BBB1BCD}.Setup (Release)|x86.Build.0 = Release|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.DebugWithAttach|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.DebugWithAttach|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.DebugWithAttach|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.DebugWithAttach|x86.Build.0 = Debug|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Setup (Release)|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Setup (Release)|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{C1C612C8-D0A1-4C5C-A503-AE63E3FE8D73}.Setup (Release)|x86.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {C3036F81-8B1F-44EF-9A28-146BFDF58925}
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(TeamFoundationVersionControl) = preSolution
|
||||||
|
SccNumberOfProjects = 5
|
||||||
|
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
|
||||||
|
SccTeamFoundationServer = https://consulting4it.visualstudio.com/
|
||||||
|
SccLocalPath0 = .
|
||||||
|
SccProjectUniqueName1 = C4IT_CustomerPanel.csproj
|
||||||
|
SccLocalPath1 = .
|
||||||
|
SccProjectUniqueName2 = Setup\\Setup.wixproj
|
||||||
|
SccProjectName2 = Setup
|
||||||
|
SccLocalPath2 = Setup
|
||||||
|
SccProjectUniqueName3 = C4IT.Matrix.WebClient\\C4IT.Matrix.WebClient.csproj
|
||||||
|
SccProjectName3 = C4IT.Matrix.WebClient
|
||||||
|
SccLocalPath3 = C4IT.Matrix.WebClient
|
||||||
|
SccProjectUniqueName4 = C4IT.Matrix.MsGatewayAuthentication\\C4IT.Matrix.MsGatewayAuthentication.csproj
|
||||||
|
SccProjectName4 = C4IT.Matrix.MsGatewayAuthentication
|
||||||
|
SccLocalPath4 = C4IT.Matrix.MsGatewayAuthentication
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
BIN
Common/ComputerInformationReport.dll
Normal file
166
Config/LanguageDefinitions.xml
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<UILanguage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="LanguageDefinitions.xsd">
|
||||||
|
<UIImage Lang=".">iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJwSURBVEhLtZZLaxNRFMczk6G4U5Na2iKTJ7RC6wcQFAUXug9dFNSVLkXwufAL2JV+AbGbIlI3gropulD8AtJGJa8GrdZHFBRRYib+/pOZMZkkNhXzhz/ncc89595z753EaDabkWHC9OTQEOzAMAxX/i8EeQcsYGaz2X31et2ORqOEGtVisbiG32kNd2OgArZt77Ys6zIxJzEnWt4Ab/EvOo6zUK1WP3u+AFsWSKVSBxF34R74wZPrUEhA3/ce5srl8hNkAD9vz0Mm+SHECrQoPI+8JT+4AC9KwX8TcQKOwBVvQV3o2oHaQp9folrwcCwWy9dqtXfon1jllGJI9gqxK5FITOCbNU3zMfbPRqMx7ber7w7o+RWEtv4ATpH8EjIG10icE6XD0Uqlcp7kWZLdxx5DV2wHwjswSfAGOS7jH7DJjiaRTpC3vUAmk5nhVjzHXIZ35Gf8HGMH4Dz6L/nQLfQl+Az9unxgDuZo70yhUFj187q98g16epwdNOFp1wHQH8KvnhkA37d0Oq02ukgmk2c0F3lMtp+34wxYjVf2Dzxfr1dosNuueNDhG3qLeh3ya2T41Q6KDQ55L5K0rbzha6rTX5SCXEJoVVdlg3tQtihdMbrSc16sbM3t3yLBe2gvUEcYOxKPx1f7PLSdXIpJfPu5/4+wfxA/zdv4opggb7iAQAI9e30qvsOzcBbqE6HVmsTehtc4rzzyBv4dyKOlUukpuou/FhC8IjrsMfgRjsIqFGzo+zaZm2tPLmxZQFC79PwZO4UZPvgN5qrnC35b2jFQgTYEPzgymLPORy0vVXYvbLfAttFVYFgY8r+KSOQ33yxrudkGfTAAAAAASUVORK5CYII=</UIImage>
|
||||||
|
<UIImage Lang="EN">iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjEuNWRHWFIAAAKiSURBVEhLtZRdSJNRGMfP3t3UdWgfhF+VZNGHFtFtdBEURKEmEXilF30QZCI5TdKLoThs01hiCYKQirsJw24KsWzrY+iYTguz2pRcpZZl5CT4d55n+OLedxdv8PrCD57zP8/Hds5zHgFgXUkqmklS0UySimaiF+LfIckTSUwIixQtUBQFinRnpL2qx33Yl2L0+XQCO1p+i43ZEJtOQqTkQ6QWouyGA/aUbQzZpImUgrgP+VKMjNXl0wny12xNz8OB45W42/kCPY+CklGEZxbwra+fIZs02iMf8qUYitXl0wnyLzsdDgwHp9DU7kNl41Nm9G0UMw1NDNmrOvn4+gZQvZ8LxHT5tIJisaDh4GFEBwaxsvIXnsfjOHfFA68/gsnSywzZpHU/8CLS3IpwWzu62u7BarXKFIn5EhYsyIs7U1COUGMzwjV1iH2exfTsIqY+zSN04jQz9XEOwfs9+HCtAkuBIL7/WEJRiV0GKzKFJp9WsMoO6bDX44vXh1/DAZWf/mGM5B5lyF67N//qDTxOFyhWmy9hQVAbUqc8z8yBf8deQ/iy9sCZup1bWJsvYUGoBdKy4c/YbQhverbxAqtHFH02xEeh8tqvJiR77d6c96XxI6JLzi+uQfTrAhaHvJg4WwRffSvGJmbVAmPvongvL305Mo3JkosIlNlQeL5aBhu5ZNlqHS13ECi9hFDpVVTZerEhxw5Pf0gtQDZpta5B/FleQbi7F7fzjoBaXJsvYcGCfCxV+3LhrnBi57EWiKw6RlsgrteyT6dnCC75OA09NPnxqBBbiiHSyiEyqiAya9D1cIQvkyBbZNyM76VdZ9//GRVrht0pOdSKIDZfgK3WzZ1C2G65WeM9Hna7ZKDxYUff+o1rs0kqmklS0UySiuYB8Q+U59UQAOVdnwAAAABJRU5ErkJggg==</UIImage>
|
||||||
|
<UIImage Lang="DE">iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMS41ZEdYUgAAAYNJREFUSEvNlL1KA0EUhW92HyHPEQIGO5/AJq2VL2C0U0gngghWRpE0FhY20c7/wkoELdRGMCAEUQsLGzEETaHXc9xESO6wzMIILnxs9uw5504GdkRV/xSnGBKnGBKnGBIrJFcJnIAuoJgGPfQyY/uMkBg79GaEmZLpM0KyGi0Wi1qv17XRaKRCD73MMGv6jNDblkqlotVq1Qt6ewO6ps8IiVHL5XIm+jnTZwRII2CqUNAZT6bBKDI5nwERpFVwm8/rvSd3YAOZOMuAmzjWlidNkH0AaHnSBP9nQJwT3ZwQfZ4XbS/58bIguj2JAcgO9w08kDgS3VoUfT0V/bqCdJ0OPW9nojvLGIDscN/Aw4+Aj6U2K/pwKPp5CclR2ofl9DweYVuRYdb0GQGf+/iY6PG66BOCbazu/Vz042IQalw5y+llhlnTZwQcWFEkHQbW5pK/vrciul8TPVjFneD3LjS+48rpZYZZ02eE5Po9rrmvadDT8/od16FxiiFxiiFxiuFQ+QZDin2vvZw6uAAAAABJRU5ErkJggg==</UIImage>
|
||||||
|
<UISubstitution Lang="EN"></UISubstitution>
|
||||||
|
|
||||||
|
<!-- Matrix42 Settings -->
|
||||||
|
<UIItem Name="M42Settings.SystemTray">
|
||||||
|
<Language Lang="EN">Matrix42 settings</Language>
|
||||||
|
<Language Lang="DE">Matrix42 Einstellungen</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.Header">
|
||||||
|
<Language Lang="EN">Matrix42 settings for {0}</Language>
|
||||||
|
<Language Lang="DE">Matrix42 Einstellungen für {0}</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.Header.RefreshForm">
|
||||||
|
<Language Lang="EN">Refresh authentication form</Language>
|
||||||
|
<Language Lang="DE">Anmelde-Formular wiederherstellen</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.Header.ClearCookies">
|
||||||
|
<Language Lang="EN">Clear cookies</Language>
|
||||||
|
<Language Lang="DE">Cookies löschen</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.RestartDialog.Caption">
|
||||||
|
<Language Lang="EN">Changes in the Matrix42 authentication</Language>
|
||||||
|
<Language Lang="DE">Änderungen der Matrix42 Anmeldung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonActive.Header">
|
||||||
|
<Language Lang="EN">Matrix42 logon active:</Language>
|
||||||
|
<Language Lang="DE">Matrix42 Anmeldung aktiv:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonActive.AutoPassthroughOff">
|
||||||
|
<Language Lang="EN">no automatic passthrough authentication</Language>
|
||||||
|
<Language Lang="DE">keine automatische Passthrough-Authentifizierung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonActive.LogonDisabled">
|
||||||
|
<Language Lang="EN">Disable logon at all</Language>
|
||||||
|
<Language Lang="DE">Anmeldung vollständig deaktivieren</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.ChangedInfoDialog.Text">
|
||||||
|
<Language Lang="EN">
|
||||||
|
Changes in the Matrix42 authentification will not take effect until the environment is restarted. All open sessions will be lost.
|
||||||
|
|
||||||
|
Do you want to restart the F4SD Cockpit now?
|
||||||
|
</Language>
|
||||||
|
<Language Lang="DE">
|
||||||
|
Die Änderungen bei der Matrix42 Anmeldung treten erst in Kraft, nachdem die Umgebung neu gestartet wurde. Alle offenen Fälle gehen dabei verloren.
|
||||||
|
|
||||||
|
Wollen Sie das F4SD Cockpit jetzt neu starten?
|
||||||
|
</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Header">
|
||||||
|
<Language Lang="EN">Logon method:</Language>
|
||||||
|
<Language Lang="DE">Logon Methode:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.CurrentUserInvalid">
|
||||||
|
<Language Lang="EN">You are not currently logged in to Matrix42 WPM.</Language>
|
||||||
|
<Language Lang="DE">Sie sind derzeit nicht bei Matrix42 WPM angemeldet.</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.CurrentUserValid">
|
||||||
|
<Language Lang="EN">You are currently authenticated as '{0}' until {1}.</Language>
|
||||||
|
<Language Lang="DE">Ihre Anmeldung als '{0}' ist bis zum {1} gültig.</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.AuthenticationMethod">
|
||||||
|
<Language Lang="EN">Alternativ authentication method:</Language>
|
||||||
|
<Language Lang="DE">Alternative Authentifizierungsmethode:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Passthough">
|
||||||
|
<Language Lang="EN">Passthrough authentication</Language>
|
||||||
|
<Language Lang="DE">Passthrough-Authentifizierung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.PassthoughUser">
|
||||||
|
<Language Lang="EN">Passthrough authentication with user '{0}'</Language>
|
||||||
|
<Language Lang="DE">Passthrough-Authentifizierung mit Benutzer '{0}'</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.None">
|
||||||
|
<Language Lang="EN">None</Language>
|
||||||
|
<Language Lang="DE">Keines</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic">
|
||||||
|
<Language Lang="EN">Authentication with explicit user name and password</Language>
|
||||||
|
<Language Lang="DE">Authentifizierung mit explizitem Benutzernamen und Passwort</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token">
|
||||||
|
<Language Lang="EN">Authentication with WEB services token</Language>
|
||||||
|
<Language Lang="DE">Authentifizierung mit WEB Service Token</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.WebForm">
|
||||||
|
<Language Lang="EN">Form based logon</Language>
|
||||||
|
<Language Lang="DE">Formularbasierte Anmeldung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic.Header">
|
||||||
|
<Language Lang="EN">Logon information:</Language>
|
||||||
|
<Language Lang="DE">Anmeldeinformationen:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic.Username">
|
||||||
|
<Language Lang="EN">User name:</Language>
|
||||||
|
<Language Lang="DE">Username:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic.Password">
|
||||||
|
<Language Lang="EN">Password:</Language>
|
||||||
|
<Language Lang="DE">Passwort:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token.Header">
|
||||||
|
<Language Lang="EN">WEB service token:</Language>
|
||||||
|
<Language Lang="DE">WEB Service Token:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token.Token">
|
||||||
|
<Language Lang="EN">Token:</Language>
|
||||||
|
<Language Lang="DE">Token:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token.Check">
|
||||||
|
<Language Lang="EN">Check token</Language>
|
||||||
|
<Language Lang="DE">Prüfe Token</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Forms.Header">
|
||||||
|
<Language Lang="EN">Form based logon:</Language>
|
||||||
|
<Language Lang="DE">Formularbasierte Anmeldung:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Forms.Logon">
|
||||||
|
<Language Lang="EN">Sign up now</Language>
|
||||||
|
<Language Lang="DE">Jetzt anmelden</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.AutenticationError">
|
||||||
|
<Language Lang="EN">You could not be logged on. Please change your specifications for a valid authentication.</Language>
|
||||||
|
<Language Lang="DE">Sie konnten nicht angemeldet werden. Bitte ändern Sie ihre Angaben für eine gültige Anmeldung.</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.FormsAuthentication.Header">
|
||||||
|
<Language Lang="EN">Sign in to Matrix42 ITSM</Language>
|
||||||
|
<Language Lang="DE">Anmeldung an Matrix42 ITSM</Language>
|
||||||
|
</UIItem>
|
||||||
|
<UIItem Name="M42Settings.FormsAuthentication.HeaderResign">
|
||||||
|
<Language Lang="EN">F4SD Cockpit: Resign in to Matrix42 ITSM</Language>
|
||||||
|
<Language Lang="DE">F4SD Cockpit: Wiederanmeldung an Matrix42 ITSM</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
</UILanguage>
|
||||||
58
Config/LanguageDefinitions.xsd
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
||||||
|
|
||||||
|
<xs:simpleType name="LanguageId">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:pattern value="[A-Z]{2}|[.]" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
|
||||||
|
<xs:element name="UILanguage">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element ref="UIImage" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
<xs:element ref="UISubstitution" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
<xs:element ref="UIItem" minOccurs="1" maxOccurs="unbounded"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="UIImage">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:simpleContent>
|
||||||
|
<xs:extension base="xs:string">
|
||||||
|
<xs:attribute name="Lang" type="LanguageId" use="required"/>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:simpleContent>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="UISubstitution">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element ref="Language" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute name="Lang" type="LanguageId" use="required"/>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="UIItem">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element ref="Language" minOccurs="1" maxOccurs="unbounded" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute name="Name" type="xs:NCName" use="required"/>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="Language">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:simpleContent>
|
||||||
|
<xs:extension base="xs:string">
|
||||||
|
<xs:attribute name="Lang" type="LanguageId" use="required"/>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:simpleContent>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
</xs:schema>
|
||||||
166
Config/config/LanguageDefinitions.xml
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<UILanguage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="LanguageDefinitions.xsd">
|
||||||
|
<UIImage Lang=".">iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJwSURBVEhLtZZLaxNRFMczk6G4U5Na2iKTJ7RC6wcQFAUXug9dFNSVLkXwufAL2JV+AbGbIlI3gropulD8AtJGJa8GrdZHFBRRYib+/pOZMZkkNhXzhz/ncc89595z753EaDabkWHC9OTQEOzAMAxX/i8EeQcsYGaz2X31et2ORqOEGtVisbiG32kNd2OgArZt77Ys6zIxJzEnWt4Ab/EvOo6zUK1WP3u+AFsWSKVSBxF34R74wZPrUEhA3/ce5srl8hNkAD9vz0Mm+SHECrQoPI+8JT+4AC9KwX8TcQKOwBVvQV3o2oHaQp9folrwcCwWy9dqtXfon1jllGJI9gqxK5FITOCbNU3zMfbPRqMx7ber7w7o+RWEtv4ATpH8EjIG10icE6XD0Uqlcp7kWZLdxx5DV2wHwjswSfAGOS7jH7DJjiaRTpC3vUAmk5nhVjzHXIZ35Gf8HGMH4Dz6L/nQLfQl+Az9unxgDuZo70yhUFj187q98g16epwdNOFp1wHQH8KvnhkA37d0Oq02ukgmk2c0F3lMtp+34wxYjVf2Dzxfr1dosNuueNDhG3qLeh3ya2T41Q6KDQ55L5K0rbzha6rTX5SCXEJoVVdlg3tQtihdMbrSc16sbM3t3yLBe2gvUEcYOxKPx1f7PLSdXIpJfPu5/4+wfxA/zdv4opggb7iAQAI9e30qvsOzcBbqE6HVmsTehtc4rzzyBv4dyKOlUukpuou/FhC8IjrsMfgRjsIqFGzo+zaZm2tPLmxZQFC79PwZO4UZPvgN5qrnC35b2jFQgTYEPzgymLPORy0vVXYvbLfAttFVYFgY8r+KSOQ33yxrudkGfTAAAAAASUVORK5CYII=</UIImage>
|
||||||
|
<UIImage Lang="EN">iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjEuNWRHWFIAAAKiSURBVEhLtZRdSJNRGMfP3t3UdWgfhF+VZNGHFtFtdBEURKEmEXilF30QZCI5TdKLoThs01hiCYKQirsJw24KsWzrY+iYTguz2pRcpZZl5CT4d55n+OLedxdv8PrCD57zP8/Hds5zHgFgXUkqmklS0UySimaiF+LfIckTSUwIixQtUBQFinRnpL2qx33Yl2L0+XQCO1p+i43ZEJtOQqTkQ6QWouyGA/aUbQzZpImUgrgP+VKMjNXl0wny12xNz8OB45W42/kCPY+CklGEZxbwra+fIZs02iMf8qUYitXl0wnyLzsdDgwHp9DU7kNl41Nm9G0UMw1NDNmrOvn4+gZQvZ8LxHT5tIJisaDh4GFEBwaxsvIXnsfjOHfFA68/gsnSywzZpHU/8CLS3IpwWzu62u7BarXKFIn5EhYsyIs7U1COUGMzwjV1iH2exfTsIqY+zSN04jQz9XEOwfs9+HCtAkuBIL7/WEJRiV0GKzKFJp9WsMoO6bDX44vXh1/DAZWf/mGM5B5lyF67N//qDTxOFyhWmy9hQVAbUqc8z8yBf8deQ/iy9sCZup1bWJsvYUGoBdKy4c/YbQhverbxAqtHFH02xEeh8tqvJiR77d6c96XxI6JLzi+uQfTrAhaHvJg4WwRffSvGJmbVAmPvongvL305Mo3JkosIlNlQeL5aBhu5ZNlqHS13ECi9hFDpVVTZerEhxw5Pf0gtQDZpta5B/FleQbi7F7fzjoBaXJsvYcGCfCxV+3LhrnBi57EWiKw6RlsgrteyT6dnCC75OA09NPnxqBBbiiHSyiEyqiAya9D1cIQvkyBbZNyM76VdZ9//GRVrht0pOdSKIDZfgK3WzZ1C2G65WeM9Hna7ZKDxYUff+o1rs0kqmklS0UySiuYB8Q+U59UQAOVdnwAAAABJRU5ErkJggg==</UIImage>
|
||||||
|
<UIImage Lang="DE">iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMS41ZEdYUgAAAYNJREFUSEvNlL1KA0EUhW92HyHPEQIGO5/AJq2VL2C0U0gngghWRpE0FhY20c7/wkoELdRGMCAEUQsLGzEETaHXc9xESO6wzMIILnxs9uw5504GdkRV/xSnGBKnGBKnGBIrJFcJnIAuoJgGPfQyY/uMkBg79GaEmZLpM0KyGi0Wi1qv17XRaKRCD73MMGv6jNDblkqlotVq1Qt6ewO6ps8IiVHL5XIm+jnTZwRII2CqUNAZT6bBKDI5nwERpFVwm8/rvSd3YAOZOMuAmzjWlidNkH0AaHnSBP9nQJwT3ZwQfZ4XbS/58bIguj2JAcgO9w08kDgS3VoUfT0V/bqCdJ0OPW9nojvLGIDscN/Aw4+Aj6U2K/pwKPp5CclR2ofl9DweYVuRYdb0GQGf+/iY6PG66BOCbazu/Vz042IQalw5y+llhlnTZwQcWFEkHQbW5pK/vrciul8TPVjFneD3LjS+48rpZYZZ02eE5Po9rrmvadDT8/od16FxiiFxiiFxiuFQ+QZDin2vvZw6uAAAAABJRU5ErkJggg==</UIImage>
|
||||||
|
<UISubstitution Lang="EN"></UISubstitution>
|
||||||
|
|
||||||
|
<!-- Matrix42 Settings -->
|
||||||
|
<UIItem Name="M42Settings.SystemTray">
|
||||||
|
<Language Lang="EN">Matrix42 settings</Language>
|
||||||
|
<Language Lang="DE">Matrix42 Einstellungen</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.Header">
|
||||||
|
<Language Lang="EN">Matrix42 settings for {0}</Language>
|
||||||
|
<Language Lang="DE">Matrix42 Einstellungen für {0}</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.Header.RefreshForm">
|
||||||
|
<Language Lang="EN">Refresh authentication form</Language>
|
||||||
|
<Language Lang="DE">Anmelde-Formular wiederherstellen</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.Header.ClearCookies">
|
||||||
|
<Language Lang="EN">Clear cookies</Language>
|
||||||
|
<Language Lang="DE">Cookies löschen</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.RestartDialog.Caption">
|
||||||
|
<Language Lang="EN">Changes in the Matrix42 authentication</Language>
|
||||||
|
<Language Lang="DE">Änderungen der Matrix42 Anmeldung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonActive.Header">
|
||||||
|
<Language Lang="EN">Matrix42 logon active:</Language>
|
||||||
|
<Language Lang="DE">Matrix42 Anmeldung aktiv:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonActive.AutoPassthroughOff">
|
||||||
|
<Language Lang="EN">no automatic passthrough authentication</Language>
|
||||||
|
<Language Lang="DE">keine automatische Passthrough-Authentifizierung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonActive.LogonDisabled">
|
||||||
|
<Language Lang="EN">Disable logon at all</Language>
|
||||||
|
<Language Lang="DE">Anmeldung vollständig deaktivieren</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.ChangedInfoDialog.Text">
|
||||||
|
<Language Lang="EN">
|
||||||
|
Changes in the Matrix42 authentification will not take effect until the environment is restarted. All open sessions will be lost.
|
||||||
|
|
||||||
|
Do you want to restart the F4SD Cockpit now?
|
||||||
|
</Language>
|
||||||
|
<Language Lang="DE">
|
||||||
|
Die Änderungen bei der Matrix42 Anmeldung treten erst in Kraft, nachdem die Umgebung neu gestartet wurde. Alle offenen Fälle gehen dabei verloren.
|
||||||
|
|
||||||
|
Wollen Sie das F4SD Cockpit jetzt neu starten?
|
||||||
|
</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Header">
|
||||||
|
<Language Lang="EN">Logon method:</Language>
|
||||||
|
<Language Lang="DE">Logon Methode:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.CurrentUserInvalid">
|
||||||
|
<Language Lang="EN">You are not currently logged in to Matrix42 WPM.</Language>
|
||||||
|
<Language Lang="DE">Sie sind derzeit nicht bei Matrix42 WPM angemeldet.</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.CurrentUserValid">
|
||||||
|
<Language Lang="EN">You are currently authenticated as '{0}' until {1}.</Language>
|
||||||
|
<Language Lang="DE">Ihre Anmeldung als '{0}' ist bis zum {1} gültig.</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.AuthenticationMethod">
|
||||||
|
<Language Lang="EN">Alternativ authentication method:</Language>
|
||||||
|
<Language Lang="DE">Alternative Authentifizierungsmethode:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Passthough">
|
||||||
|
<Language Lang="EN">Passthrough authentication</Language>
|
||||||
|
<Language Lang="DE">Passthrough-Authentifizierung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.PassthoughUser">
|
||||||
|
<Language Lang="EN">Passthrough authentication with user '{0}'</Language>
|
||||||
|
<Language Lang="DE">Passthrough-Authentifizierung mit Benutzer '{0}'</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.None">
|
||||||
|
<Language Lang="EN">None</Language>
|
||||||
|
<Language Lang="DE">Keines</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic">
|
||||||
|
<Language Lang="EN">Authentication with explicit user name and password</Language>
|
||||||
|
<Language Lang="DE">Authentifizierung mit explizitem Benutzernamen und Passwort</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token">
|
||||||
|
<Language Lang="EN">Authentication with WEB services token</Language>
|
||||||
|
<Language Lang="DE">Authentifizierung mit WEB Service Token</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.WebForm">
|
||||||
|
<Language Lang="EN">Form based logon</Language>
|
||||||
|
<Language Lang="DE">Formularbasierte Anmeldung</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic.Header">
|
||||||
|
<Language Lang="EN">Logon information:</Language>
|
||||||
|
<Language Lang="DE">Anmeldeinformationen:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic.Username">
|
||||||
|
<Language Lang="EN">User name:</Language>
|
||||||
|
<Language Lang="DE">Username:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Basic.Password">
|
||||||
|
<Language Lang="EN">Password:</Language>
|
||||||
|
<Language Lang="DE">Passwort:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token.Header">
|
||||||
|
<Language Lang="EN">WEB service token:</Language>
|
||||||
|
<Language Lang="DE">WEB Service Token:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token.Token">
|
||||||
|
<Language Lang="EN">Token:</Language>
|
||||||
|
<Language Lang="DE">Token:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Token.Check">
|
||||||
|
<Language Lang="EN">Check token</Language>
|
||||||
|
<Language Lang="DE">Prüfe Token</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Forms.Header">
|
||||||
|
<Language Lang="EN">Form based logon:</Language>
|
||||||
|
<Language Lang="DE">Formularbasierte Anmeldung:</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.LogonMethod.Forms.Logon">
|
||||||
|
<Language Lang="EN">Sign up now</Language>
|
||||||
|
<Language Lang="DE">Jetzt anmelden</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.AutenticationError">
|
||||||
|
<Language Lang="EN">You could not be logged on. Please change your specifications for a valid authentication.</Language>
|
||||||
|
<Language Lang="DE">Sie konnten nicht angemeldet werden. Bitte ändern Sie ihre Angaben für eine gültige Anmeldung.</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
<UIItem Name="M42Settings.FormsAuthentication.Header">
|
||||||
|
<Language Lang="EN">Sign in to Matrix42 ITSM</Language>
|
||||||
|
<Language Lang="DE">Anmeldung an Matrix42 ITSM</Language>
|
||||||
|
</UIItem>
|
||||||
|
<UIItem Name="M42Settings.FormsAuthentication.HeaderResign">
|
||||||
|
<Language Lang="EN">F4SD Cockpit: Resign in to Matrix42 ITSM</Language>
|
||||||
|
<Language Lang="DE">F4SD Cockpit: Wiederanmeldung an Matrix42 ITSM</Language>
|
||||||
|
</UIItem>
|
||||||
|
|
||||||
|
</UILanguage>
|
||||||
58
Config/config/LanguageDefinitions.xsd
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
||||||
|
|
||||||
|
<xs:simpleType name="LanguageId">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:pattern value="[A-Z]{2}|[.]" />
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
|
||||||
|
<xs:element name="UILanguage">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element ref="UIImage" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
<xs:element ref="UISubstitution" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
<xs:element ref="UIItem" minOccurs="1" maxOccurs="unbounded"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="UIImage">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:simpleContent>
|
||||||
|
<xs:extension base="xs:string">
|
||||||
|
<xs:attribute name="Lang" type="LanguageId" use="required"/>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:simpleContent>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="UISubstitution">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element ref="Language" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute name="Lang" type="LanguageId" use="required"/>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="UIItem">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element ref="Language" minOccurs="1" maxOccurs="unbounded" />
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute name="Name" type="xs:NCName" use="required"/>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="Language">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:simpleContent>
|
||||||
|
<xs:extension base="xs:string">
|
||||||
|
<xs:attribute name="Lang" type="LanguageId" use="required"/>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:simpleContent>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
</xs:schema>
|
||||||
41
Converter/BlurEffectConverter.cs
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
|
||||||
|
namespace C4IT_CustomerPanel.Converter
|
||||||
|
{
|
||||||
|
public class BooleanToBlurEffectConverter : MarkupExtension, IValueConverter
|
||||||
|
{
|
||||||
|
public double Radius { get; set; } = 5;
|
||||||
|
|
||||||
|
public object Convert(
|
||||||
|
object value, Type targetType, object parameter,
|
||||||
|
CultureInfo culture)
|
||||||
|
{
|
||||||
|
if (!(value is bool))
|
||||||
|
return null;
|
||||||
|
|
||||||
|
return (bool)value ? new BlurEffect() { Radius = Radius, KernelType = KernelType.Gaussian } :
|
||||||
|
null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public object ConvertBack(
|
||||||
|
object value, Type targetType, object parameter,
|
||||||
|
CultureInfo culture)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override object ProvideValue(IServiceProvider serviceProvider)
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
30
Converter/EnumerationComparisonConverter.cs
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Web.UI;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
|
||||||
|
namespace C4IT_CustomerPanel.Converter
|
||||||
|
{
|
||||||
|
public class EnumerationComparisonConverter : MarkupExtension, IValueConverter
|
||||||
|
{
|
||||||
|
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
||||||
|
{
|
||||||
|
return value?.Equals(parameter);
|
||||||
|
}
|
||||||
|
|
||||||
|
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
||||||
|
{
|
||||||
|
return value?.Equals(true) == true ? parameter : Binding.DoNothing;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override object ProvideValue(IServiceProvider serviceProvider)
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
51
Converter/LanguageDefinitionsConverter.cs
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
using C4IT.Logging;
|
||||||
|
using C4IT.MultiLanguage;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using static C4IT.Logging.cLogManager;
|
||||||
|
|
||||||
|
namespace C4IT_CustomerPanel.Converter
|
||||||
|
{
|
||||||
|
public class LanguageDefinitionsConverter : IValueConverter
|
||||||
|
{
|
||||||
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!(parameter is string techFieldDescriptor))
|
||||||
|
return "N/A";
|
||||||
|
|
||||||
|
string fieldDescription = cMultiLanguageSupport.GetItem(techFieldDescriptor, techFieldDescriptor);
|
||||||
|
|
||||||
|
if (value is object[] valueArray)
|
||||||
|
return string.Format(fieldDescription, valueArray);
|
||||||
|
|
||||||
|
if (value is List<object> valueList)
|
||||||
|
return string.Format(fieldDescription, valueList.ToArray());
|
||||||
|
|
||||||
|
if (value is object valueString)
|
||||||
|
return string.Format(fieldDescription, valueString);
|
||||||
|
|
||||||
|
return fieldDescription;
|
||||||
|
}
|
||||||
|
catch (Exception E)
|
||||||
|
{
|
||||||
|
LogException(E);
|
||||||
|
LogEntry($"An Error occured while setting the value ({value}) to field: {parameter}");
|
||||||
|
}
|
||||||
|
|
||||||
|
return "N/A";
|
||||||
|
}
|
||||||
|
|
||||||
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
42
Converter/VisibilityConverters.cs
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
|
||||||
|
namespace C4IT_CustomerPanel.Converter
|
||||||
|
{
|
||||||
|
public class BooleanToVisibiliyConverter : MarkupExtension, IValueConverter
|
||||||
|
{
|
||||||
|
public Visibility TrueValue { get; set; } = Visibility.Visible;
|
||||||
|
public Visibility FalseValue { get; set; } = Visibility.Collapsed;
|
||||||
|
|
||||||
|
public object Convert(
|
||||||
|
object value, Type targetType, object parameter,
|
||||||
|
CultureInfo culture)
|
||||||
|
{
|
||||||
|
if (!(value is bool))
|
||||||
|
return FalseValue;
|
||||||
|
|
||||||
|
return (bool)value ? TrueValue :
|
||||||
|
FalseValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
public object ConvertBack(
|
||||||
|
object value, Type targetType, object parameter,
|
||||||
|
CultureInfo culture)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override object ProvideValue(IServiceProvider serviceProvider)
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
ExternalLibraries/C4IT-AdaptableIcons.dll
Normal file
109
F4SD-ResourceDictionaries/CheckBoxResources.xaml
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
|
|
||||||
|
<Style x:Key="ToggleSwitch"
|
||||||
|
TargetType="CheckBox">
|
||||||
|
<Setter Property="Height"
|
||||||
|
Value="15" />
|
||||||
|
<Setter Property="ToolTipService.ShowOnDisabled"
|
||||||
|
Value="True" />
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="CheckBox">
|
||||||
|
<ControlTemplate.Resources>
|
||||||
|
<Storyboard x:Key="OnChecking">
|
||||||
|
<DoubleAnimation Storyboard.TargetName="MySlider"
|
||||||
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(TranslateTransform.X)"
|
||||||
|
Duration="00:00:00.25"
|
||||||
|
From="0"
|
||||||
|
To="25.5" />
|
||||||
|
<ColorAnimation Duration="00:00:00.25"
|
||||||
|
Storyboard.TargetName="MySliderBackground"
|
||||||
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)"
|
||||||
|
To="{StaticResource Color.LoadingDot.Primary}" />
|
||||||
|
</Storyboard>
|
||||||
|
<Storyboard x:Key="OnUnchecking">
|
||||||
|
<DoubleAnimation Storyboard.TargetName="MySlider"
|
||||||
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(TranslateTransform.X)"
|
||||||
|
Duration="00:00:00.25"
|
||||||
|
From="25.5"
|
||||||
|
To="0" />
|
||||||
|
<ColorAnimation Duration="00:00:00.25"
|
||||||
|
Storyboard.TargetName="MySliderBackground"
|
||||||
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Color)"
|
||||||
|
From="{StaticResource Color.LoadingDot.Primary}" />
|
||||||
|
</Storyboard>
|
||||||
|
</ControlTemplate.Resources>
|
||||||
|
|
||||||
|
<ControlTemplate.Triggers>
|
||||||
|
<Trigger Property="IsChecked"
|
||||||
|
Value="True">
|
||||||
|
<Trigger.EnterActions>
|
||||||
|
<BeginStoryboard Storyboard="{StaticResource OnChecking}"
|
||||||
|
x:Name="OnChecking_BeginStoryboard" />
|
||||||
|
</Trigger.EnterActions>
|
||||||
|
<Trigger.ExitActions>
|
||||||
|
<BeginStoryboard Storyboard="{StaticResource OnUnchecking}"
|
||||||
|
x:Name="OnUnchecking_BeginStoryboard" />
|
||||||
|
</Trigger.ExitActions>
|
||||||
|
<Setter Property="Background"
|
||||||
|
Value="#1F92EE" />
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsChecked"
|
||||||
|
Value="False">
|
||||||
|
<Setter Property="Background"
|
||||||
|
Value="{DynamicResource Color.SoftContrast}" />
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsEnabled"
|
||||||
|
Value="False">
|
||||||
|
<Setter Property="Opacity"
|
||||||
|
Value="0.7" />
|
||||||
|
<Setter Property="Cursor"
|
||||||
|
Value="{x:Null}" />
|
||||||
|
</Trigger>
|
||||||
|
</ControlTemplate.Triggers>
|
||||||
|
|
||||||
|
<Viewbox
|
||||||
|
ToolTip="{TemplateBinding ToolTip}"
|
||||||
|
ToolTipService.ShowOnDisabled="True">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<Border x:Name="MySliderBackground"
|
||||||
|
Background="{TemplateBinding Background}"
|
||||||
|
Width="50"
|
||||||
|
Height="25"
|
||||||
|
CornerRadius="12.5"
|
||||||
|
Cursor="Hand">
|
||||||
|
<Grid HorizontalAlignment="Left">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="*" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Border x:Name="MySlider"
|
||||||
|
Grid.Column="1">
|
||||||
|
<Border.RenderTransform>
|
||||||
|
<TransformGroup>
|
||||||
|
<TranslateTransform X="0"
|
||||||
|
Y="0" />
|
||||||
|
</TransformGroup>
|
||||||
|
</Border.RenderTransform>
|
||||||
|
<Ellipse Height="21.5"
|
||||||
|
Width="21.5"
|
||||||
|
Fill="{DynamicResource BackgroundColor.Menu.MainCategory.Hover}"
|
||||||
|
DockPanel.Dock="Left"
|
||||||
|
Margin="2 1.5" />
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
<ContentPresenter
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
Margin="5,0,0,0"
|
||||||
|
Content="{TemplateBinding Content}" />
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
</Viewbox>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
</ResourceDictionary>
|
||||||
76
F4SD-ResourceDictionaries/DarkModeResources.xaml
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
|
|
||||||
|
<!--Common Styles-->
|
||||||
|
<SolidColorBrush x:Key="Color.AppBackground"
|
||||||
|
Color="#363636" />
|
||||||
|
<SolidColorBrush x:Key="Color.F4SD"
|
||||||
|
Color="#9B9B9B" />
|
||||||
|
<SolidColorBrush x:Key="Color.BlurBorder"
|
||||||
|
Color="#8C8C8C" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="Color.Blue"
|
||||||
|
Color="#009DDD" />
|
||||||
|
<SolidColorBrush x:Key="Color.Green"
|
||||||
|
Color="#75B159" />
|
||||||
|
<SolidColorBrush x:Key="Color.Orange"
|
||||||
|
Color="#FB9D28" />
|
||||||
|
<SolidColorBrush x:Key="Color.Red"
|
||||||
|
Color="#CE3D36" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Blue"
|
||||||
|
Color="#009DDD" />
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Green"
|
||||||
|
Color="#75B159" />
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Orange"
|
||||||
|
Color="#FB9D28" />
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Red"
|
||||||
|
Color="#CE3D36" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="Color.SoftContrast"
|
||||||
|
Color="#313131" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="Color.FunctionMarker"
|
||||||
|
Color="#1F92EE" />
|
||||||
|
|
||||||
|
<Color x:Key="Color.LoadingDot.Primary">#1F92EE</Color>
|
||||||
|
<Color x:Key="Color.LoadingDot.Secondary">#DBDBDB</Color>
|
||||||
|
|
||||||
|
<!--Menu Styles-->
|
||||||
|
<SolidColorBrush x:Key="Color.Menu.Icon"
|
||||||
|
Color="#9B9B9B" />
|
||||||
|
<SolidColorBrush x:Key="Color.Menu.Icon.Hover"
|
||||||
|
Color="#0077A8" />
|
||||||
|
<SolidColorBrush x:Key="Background.Menu.Icon.Hover"
|
||||||
|
Color="#272727" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.Categories"
|
||||||
|
Color="#272727" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.MainCategory"
|
||||||
|
Color="#1A1A1A" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.MainCategory.Hover"
|
||||||
|
Color="#121212" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.SubCategory"
|
||||||
|
Color="#303030" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.SubCategory.Hover"
|
||||||
|
Color="#414141" />
|
||||||
|
<SolidColorBrush x:Key="FontColor.Menu.Categories"
|
||||||
|
Color="#9B9B9B" />
|
||||||
|
<SolidColorBrush x:Key="FontColor.Menu.Categories.Hover"
|
||||||
|
Color="#009DDD" />
|
||||||
|
<Color x:Key="DropShadowColor.Menu">#9B9B9B</Color>
|
||||||
|
<SolidColorBrush x:Key="BorderColor.Menu.KeyBoardShortcut"
|
||||||
|
Color="#414141" />
|
||||||
|
<Color x:Key="ShadowColor.Menu.KeyBoardShortcut">#8C8C8C</Color>
|
||||||
|
|
||||||
|
<!--Chart Colors-->
|
||||||
|
<SolidColorBrush x:Key="HorizontalLineColor">#414141</SolidColorBrush>
|
||||||
|
|
||||||
|
<!--ScrollBar Colors-->
|
||||||
|
<Color x:Key="ControlLightColor">#303030</Color>
|
||||||
|
<Color x:Key="ControlMediumColor">#303030</Color>
|
||||||
|
<Color x:Key="ControlDarkColor">#303030</Color>
|
||||||
|
<SolidColorBrush x:Key="Scrollbar.Track.Color">#404040</SolidColorBrush>
|
||||||
|
<SolidColorBrush x:Key="TestColor"
|
||||||
|
Color="MediumVioletRed"/>
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
||||||
76
F4SD-ResourceDictionaries/LightModeResources.xaml
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
|
|
||||||
|
<!--Common Styles-->
|
||||||
|
<SolidColorBrush x:Key="Color.AppBackground"
|
||||||
|
Color="#E9E9E9" />
|
||||||
|
<SolidColorBrush x:Key="Color.F4SD"
|
||||||
|
Color="#1c4A99" />
|
||||||
|
<SolidColorBrush x:Key="Color.BlurBorder"
|
||||||
|
Color="#8C8C8C" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="Color.Blue"
|
||||||
|
Color="#009DDD" />
|
||||||
|
<SolidColorBrush x:Key="Color.Green"
|
||||||
|
Color="#75B159" />
|
||||||
|
<SolidColorBrush x:Key="Color.Orange"
|
||||||
|
Color="#FB9D28" />
|
||||||
|
<SolidColorBrush x:Key="Color.Red"
|
||||||
|
Color="#CE3D36" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Blue"
|
||||||
|
Color="#009DDD" />
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Green"
|
||||||
|
Color="#75B159" />
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Orange"
|
||||||
|
Color="#FB9D28" />
|
||||||
|
<SolidColorBrush x:Key="HighlightColor.Red"
|
||||||
|
Color="#CE3D36" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="Color.SoftContrast"
|
||||||
|
Color="#DBDBDB" />
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="Color.FunctionMarker"
|
||||||
|
Color="#1F92EE" />
|
||||||
|
|
||||||
|
<Color x:Key="Color.LoadingDot.Primary">#1F92EE</Color>
|
||||||
|
<Color x:Key="Color.LoadingDot.Secondary">#DBDBDB</Color>
|
||||||
|
|
||||||
|
<!--Menu Styles-->
|
||||||
|
<SolidColorBrush x:Key="Color.Menu.Icon"
|
||||||
|
Color="#3D3C3C" />
|
||||||
|
<SolidColorBrush x:Key="Color.Menu.Icon.Hover"
|
||||||
|
Color="#1F92EE" />
|
||||||
|
<SolidColorBrush x:Key="Background.Menu.Icon.Hover"
|
||||||
|
Color="#F2F2F2" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.Categories"
|
||||||
|
Color="#F2F2F2" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.MainCategory"
|
||||||
|
Color="#F7FAFA" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.MainCategory.Hover"
|
||||||
|
Color="#FAFCFC" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.SubCategory"
|
||||||
|
Color="#EBEBEB" />
|
||||||
|
<SolidColorBrush x:Key="BackgroundColor.Menu.SubCategory.Hover"
|
||||||
|
Color="#E2E2E2" />
|
||||||
|
<SolidColorBrush x:Key="FontColor.Menu.Categories"
|
||||||
|
Color="#3D3C3C" />
|
||||||
|
<SolidColorBrush x:Key="FontColor.Menu.Categories.Hover"
|
||||||
|
Color="#005FAC" />
|
||||||
|
<Color x:Key="DropShadowColor.Menu">#3D3C3C</Color>
|
||||||
|
<SolidColorBrush x:Key="BorderColor.Menu.KeyBoardShortcut"
|
||||||
|
Color="#DBDBDB" />
|
||||||
|
<Color x:Key="ShadowColor.Menu.KeyBoardShortcut">#8C8C8C</Color>
|
||||||
|
|
||||||
|
<!--Chart Colors-->
|
||||||
|
<SolidColorBrush x:Key="HorizontalLineColor">#707070</SolidColorBrush>
|
||||||
|
|
||||||
|
<!--ScrollBar Colors-->
|
||||||
|
<Color x:Key="ControlLightColor">#DBDBDB</Color>
|
||||||
|
<Color x:Key="ControlMediumColor">#DBDBDB</Color>
|
||||||
|
<Color x:Key="ControlDarkColor">#DBDBDB</Color>
|
||||||
|
<SolidColorBrush x:Key="Scrollbar.Track.Color">#EBEBEB</SolidColorBrush>
|
||||||
|
<SolidColorBrush x:Key="TestColor"
|
||||||
|
Color="DarkOrange" />
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
||||||
90
F4SD-ResourceDictionaries/RadioButtonResources.xaml
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
|
|
||||||
|
<Style x:Key="FocusVisual">
|
||||||
|
<Setter Property="Control.Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate>
|
||||||
|
<Rectangle Margin="2" StrokeDashArray="1 2" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" SnapsToDevicePixels="true" StrokeThickness="1"/>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
<Style x:Key="OptionMarkFocusVisual">
|
||||||
|
<Setter Property="Control.Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate>
|
||||||
|
<Rectangle Margin="14,0,0,0" StrokeDashArray="1 2" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" SnapsToDevicePixels="true" StrokeThickness="1"/>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Static.Background" Color="#FFFFFFFF"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Static.Border" Color="#FF707070"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Static.Glyph" Color="#FF212121"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.MouseOver.Background" Color="#FFF3F9FF"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.MouseOver.Border" Color="#FF5593FF"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.MouseOver.Glyph" Color="#FF212121"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Pressed.Background" Color="#FFD9ECFF"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Pressed.Border" Color="#FF3C77DD"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Pressed.Glyph" Color="#FF212121"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Disabled.Background" Color="#FFE6E6E6"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Disabled.Border" Color="#FFBCBCBC"/>
|
||||||
|
<SolidColorBrush x:Key="RadioButton.Disabled.Glyph" Color="#FF707070"/>
|
||||||
|
|
||||||
|
<Style x:Key="RadioButtonStyle" TargetType="{x:Type RadioButton}">
|
||||||
|
<Setter Property="Width" Value="15" />
|
||||||
|
<Setter Property="Height" Value="15" />
|
||||||
|
<Setter Property="FocusVisualStyle" Value="{StaticResource FocusVisual}"/>
|
||||||
|
<Setter Property="Background" Value="{StaticResource RadioButton.Static.Background}"/>
|
||||||
|
<Setter Property="BorderBrush" Value="{StaticResource RadioButton.Static.Border}"/>
|
||||||
|
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
|
||||||
|
<Setter Property="BorderThickness" Value="1"/>
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="{x:Type RadioButton}">
|
||||||
|
<Grid x:Name="templateRoot" Background="Transparent" SnapsToDevicePixels="True">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="Auto"/>
|
||||||
|
<ColumnDefinition Width="*"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Border x:Name="radioButtonBorder" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="3" Height="15" Width="15" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="0,0,0,0" VerticalAlignment="{TemplateBinding VerticalContentAlignment}">
|
||||||
|
<Grid x:Name="markGrid" Margin="2">
|
||||||
|
<Ellipse x:Name="optionMark" Fill="{StaticResource RadioButton.Static.Glyph}" MinWidth="6" MinHeight="6" Opacity="0"/>
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
<ContentPresenter x:Name="contentPresenter" Grid.Column="1" Focusable="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
|
||||||
|
</Grid>
|
||||||
|
<ControlTemplate.Triggers>
|
||||||
|
<Trigger Property="HasContent" Value="true">
|
||||||
|
<Setter Property="FocusVisualStyle" Value="{StaticResource OptionMarkFocusVisual}"/>
|
||||||
|
<Setter Property="Padding" Value="4,-1,0,0"/>
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsMouseOver" Value="true">
|
||||||
|
<Setter Property="Background" TargetName="radioButtonBorder" Value="{StaticResource RadioButton.MouseOver.Background}"/>
|
||||||
|
<Setter Property="BorderBrush" TargetName="radioButtonBorder" Value="{StaticResource RadioButton.MouseOver.Border}"/>
|
||||||
|
<Setter Property="Fill" TargetName="optionMark" Value="{StaticResource RadioButton.MouseOver.Glyph}"/>
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsEnabled" Value="false">
|
||||||
|
<Setter Property="Background" TargetName="radioButtonBorder" Value="{StaticResource RadioButton.Disabled.Background}"/>
|
||||||
|
<Setter Property="BorderBrush" TargetName="radioButtonBorder" Value="{StaticResource RadioButton.Disabled.Border}"/>
|
||||||
|
<Setter Property="Fill" TargetName="optionMark" Value="{StaticResource RadioButton.Disabled.Glyph}"/>
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsPressed" Value="true">
|
||||||
|
<Setter Property="Background" TargetName="radioButtonBorder" Value="{StaticResource RadioButton.Pressed.Background}"/>
|
||||||
|
<Setter Property="BorderBrush" TargetName="radioButtonBorder" Value="{StaticResource RadioButton.Pressed.Border}"/>
|
||||||
|
<Setter Property="Fill" TargetName="optionMark" Value="{StaticResource RadioButton.Pressed.Glyph}"/>
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsChecked" Value="true">
|
||||||
|
<Setter Property="Opacity" TargetName="optionMark" Value="1"/>
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsChecked" Value="{x:Null}">
|
||||||
|
<Setter Property="Opacity" TargetName="optionMark" Value="0.56"/>
|
||||||
|
</Trigger>
|
||||||
|
</ControlTemplate.Triggers>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
||||||
668
MainWindow.xaml
Normal file
@@ -0,0 +1,668 @@
|
|||||||
|
<Window x:Name="Window"
|
||||||
|
x:Class="C4IT_CustomerPanel.MainWindow"
|
||||||
|
xmlns:resx="clr-namespace:C4IT_CustomerPanel.Properties"
|
||||||
|
xmlns:uctrl="clr-namespace:C4IT_CustomerPanel.UserControls"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
Title="Customer Panel"
|
||||||
|
Height="650"
|
||||||
|
Width="500"
|
||||||
|
ShowInTaskbar="False"
|
||||||
|
WindowStyle="None"
|
||||||
|
AllowsTransparency="False"
|
||||||
|
ResizeMode="NoResize"
|
||||||
|
Background="Transparent"
|
||||||
|
Loaded="Window_Loaded"
|
||||||
|
Icon="Resources/icons/logo_CustomerPanel.ico"
|
||||||
|
KeyDown="App_KeyDown"
|
||||||
|
Closed="Window_Closed"
|
||||||
|
SizeChanged="Window_SizeChanged">
|
||||||
|
<Window.Resources>
|
||||||
|
|
||||||
|
<Style x:Key="ScrollBarTrackThumb"
|
||||||
|
TargetType="{x:Type Thumb}">
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="{x:Type Thumb}">
|
||||||
|
<Grid x:Name="Grid">
|
||||||
|
<Rectangle HorizontalAlignment="Stretch"
|
||||||
|
VerticalAlignment="Stretch"
|
||||||
|
Width="Auto"
|
||||||
|
Height="Auto"
|
||||||
|
Fill="Transparent" />
|
||||||
|
<Border x:Name="CornerScrollBarRectangle"
|
||||||
|
CornerRadius="0"
|
||||||
|
HorizontalAlignment="Stretch"
|
||||||
|
VerticalAlignment="Stretch"
|
||||||
|
Width="Auto"
|
||||||
|
Height="Auto"
|
||||||
|
Margin="0,1,0,1"
|
||||||
|
Background="#FF7C7777" />
|
||||||
|
</Grid>
|
||||||
|
<ControlTemplate.Triggers>
|
||||||
|
<Trigger Property="Tag"
|
||||||
|
Value="Horizontal">
|
||||||
|
<Setter TargetName="CornerScrollBarRectangle"
|
||||||
|
Property="Width"
|
||||||
|
Value="Auto" />
|
||||||
|
<Setter TargetName="CornerScrollBarRectangle"
|
||||||
|
Property="Height"
|
||||||
|
Value="6" />
|
||||||
|
</Trigger>
|
||||||
|
</ControlTemplate.Triggers>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
<Style TargetType="{x:Type ScrollBar}">
|
||||||
|
<Setter Property="Stylus.IsFlicksEnabled"
|
||||||
|
Value="false" />
|
||||||
|
<Setter Property="Foreground"
|
||||||
|
Value="#ADABAB" />
|
||||||
|
<Setter Property="Background"
|
||||||
|
Value="Transparent" />
|
||||||
|
<Setter Property="Width"
|
||||||
|
Value="7" />
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="{x:Type ScrollBar}">
|
||||||
|
<Grid x:Name="GridRoot"
|
||||||
|
Width="10"
|
||||||
|
Background="{TemplateBinding Background}">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="0.00001*" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Track x:Name="PART_Track"
|
||||||
|
Grid.Row="0"
|
||||||
|
IsDirectionReversed="true"
|
||||||
|
Focusable="false">
|
||||||
|
<Track.Thumb>
|
||||||
|
<Thumb x:Name="Thumb"
|
||||||
|
Background="{TemplateBinding Foreground}"
|
||||||
|
Style="{DynamicResource ScrollBarTrackThumb}" />
|
||||||
|
</Track.Thumb>
|
||||||
|
<Track.IncreaseRepeatButton>
|
||||||
|
<RepeatButton x:Name="PageUp"
|
||||||
|
Command="ScrollBar.PageDownCommand"
|
||||||
|
Opacity="0"
|
||||||
|
Focusable="false" />
|
||||||
|
</Track.IncreaseRepeatButton>
|
||||||
|
<Track.DecreaseRepeatButton>
|
||||||
|
<RepeatButton x:Name="PageDown"
|
||||||
|
Command="ScrollBar.PageUpCommand"
|
||||||
|
Opacity="0"
|
||||||
|
Focusable="false" />
|
||||||
|
</Track.DecreaseRepeatButton>
|
||||||
|
</Track>
|
||||||
|
</Grid>
|
||||||
|
<ControlTemplate.Triggers>
|
||||||
|
<Trigger SourceName="Thumb"
|
||||||
|
Property="IsMouseOver"
|
||||||
|
Value="true">
|
||||||
|
</Trigger>
|
||||||
|
<Trigger SourceName="Thumb"
|
||||||
|
Property="IsDragging"
|
||||||
|
Value="true">
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsEnabled"
|
||||||
|
Value="false">
|
||||||
|
<Setter TargetName="Thumb"
|
||||||
|
Property="Visibility"
|
||||||
|
Value="Collapsed" />
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="Orientation"
|
||||||
|
Value="Horizontal">
|
||||||
|
<Setter TargetName="GridRoot"
|
||||||
|
Property="LayoutTransform">
|
||||||
|
<Setter.Value>
|
||||||
|
<RotateTransform Angle="-90" />
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
<Setter TargetName="PART_Track"
|
||||||
|
Property="LayoutTransform">
|
||||||
|
<Setter.Value>
|
||||||
|
<RotateTransform Angle="-90" />
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
<Setter Property="Width"
|
||||||
|
Value="Auto" />
|
||||||
|
<Setter Property="Height"
|
||||||
|
Value="8" />
|
||||||
|
<Setter TargetName="Thumb"
|
||||||
|
Property="Tag"
|
||||||
|
Value="Horizontal" />
|
||||||
|
<Setter TargetName="PageDown"
|
||||||
|
Property="Command"
|
||||||
|
Value="ScrollBar.PageLeftCommand" />
|
||||||
|
<Setter TargetName="PageUp"
|
||||||
|
Property="Command"
|
||||||
|
Value="ScrollBar.PageRightCommand" />
|
||||||
|
</Trigger>
|
||||||
|
</ControlTemplate.Triggers>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
<SolidColorBrush x:Key="ClrPrimary"
|
||||||
|
Color="#FF2A75B4" />
|
||||||
|
<Style TargetType="Button"
|
||||||
|
x:Key="ButtonStyle">
|
||||||
|
<Setter Property="Foreground"
|
||||||
|
Value="{DynamicResource navForeground}" />
|
||||||
|
<Setter Property="Background"
|
||||||
|
Value="{DynamicResource inactiveButtonColor}" />
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Border Background="{TemplateBinding Background}">
|
||||||
|
<ContentPresenter HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Border>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
<Style.Triggers>
|
||||||
|
<Trigger Property="IsMouseOver"
|
||||||
|
Value="True">
|
||||||
|
<Setter Property="Background"
|
||||||
|
Value="{DynamicResource activeButtonColor}" />
|
||||||
|
</Trigger>
|
||||||
|
</Style.Triggers>
|
||||||
|
</Style>
|
||||||
|
<Style TargetType="Button"
|
||||||
|
x:Key="FlatButtonStyle2">
|
||||||
|
<Setter Property="FontSize"
|
||||||
|
Value="18" />
|
||||||
|
<Setter Property="Height"
|
||||||
|
Value="60" />
|
||||||
|
<Setter Property="Panel.ZIndex"
|
||||||
|
Value="50"></Setter>
|
||||||
|
<EventSetter Event="PreviewMouseDown"
|
||||||
|
Handler="Button_MouseDown" />
|
||||||
|
<EventSetter Event="MouseEnter"
|
||||||
|
Handler="Button_MouseEnter" />
|
||||||
|
<EventSetter Event="MouseLeave"
|
||||||
|
Handler="Button_MouseLeave" />
|
||||||
|
<EventSetter Event="Loaded"
|
||||||
|
Handler="Button_Loaded" />
|
||||||
|
<Setter Property="Background"
|
||||||
|
Value="{DynamicResource inactiveButtonColor}" />
|
||||||
|
</Style>
|
||||||
|
<Style TargetType="ProgressBar"
|
||||||
|
x:Key="FlatProgressBar">
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="Button">
|
||||||
|
<TextBox x:Name="test">
|
||||||
|
</TextBox>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
<Style TargetType="Image"
|
||||||
|
x:Key="ImageStyle" />
|
||||||
|
|
||||||
|
<DrawingImage x:Key="OverlayOffline">
|
||||||
|
<DrawingImage.Drawing>
|
||||||
|
<ImageDrawing Rect="0,0,16,16"
|
||||||
|
ImageSource="/Resources/StateOverlays/OverlayOffline_15.png" />
|
||||||
|
</DrawingImage.Drawing>
|
||||||
|
</DrawingImage>
|
||||||
|
</Window.Resources>
|
||||||
|
|
||||||
|
<Window.TaskbarItemInfo>
|
||||||
|
<TaskbarItemInfo />
|
||||||
|
</Window.TaskbarItemInfo>
|
||||||
|
|
||||||
|
<Grid x:Name="MainGrid">
|
||||||
|
<DockPanel Width="{Binding ActualWidth, ElementName=Window, Mode=OneWay}"
|
||||||
|
x:Name="MainDock">
|
||||||
|
<Grid DockPanel.Dock="Top"
|
||||||
|
x:Name="GridTop"
|
||||||
|
Width="{Binding ActualWidth, ElementName=Window, Mode=OneWay}"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
Margin="0"
|
||||||
|
Background="{DynamicResource headerColor}"
|
||||||
|
Height="60"
|
||||||
|
MouseDown="GridTop_MouseDown"
|
||||||
|
MouseUp="GridTop_MouseUp">
|
||||||
|
<Image Source="Resources/consulting4it-header1.png"
|
||||||
|
Panel.ZIndex="55"
|
||||||
|
Height="50"
|
||||||
|
Width="175"
|
||||||
|
VerticalAlignment="Top"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
Margin="5,5,0,0"
|
||||||
|
x:Name="Logo" />
|
||||||
|
<TextBlock x:Name="Close_Text"
|
||||||
|
MouseDown="OnMinimizeClicked"
|
||||||
|
HorizontalAlignment="Right"
|
||||||
|
FontSize="20"
|
||||||
|
FontWeight="Bold"
|
||||||
|
Margin="0,-5,5,0"
|
||||||
|
Cursor="Hand"
|
||||||
|
Panel.ZIndex="500"><Run Text="X" /></TextBlock>
|
||||||
|
<Image x:Name="RefreshIcon"
|
||||||
|
Source="{DynamicResource nav_appbar_refresh}"
|
||||||
|
Tag="ICO"
|
||||||
|
Panel.ZIndex="500"
|
||||||
|
HorizontalAlignment="Right"
|
||||||
|
Width="32"
|
||||||
|
Height="32"
|
||||||
|
VerticalAlignment="Top"
|
||||||
|
Margin="0,-5,25,0"
|
||||||
|
MouseDown="OnRefreshClicked"
|
||||||
|
Cursor="Hand" />
|
||||||
|
<!--<TextBlock MouseDown="OnCloseClicked" HorizontalAlignment="Right" FontSize="20" FontWeight="Bold" Margin="0,-5,5,0" Cursor="Hand" Panel.ZIndex="500" >X</TextBlock>-->
|
||||||
|
<Image Source="Resources/icons/light/appbar.network.server.disconnect.png"
|
||||||
|
Tag="ICO"
|
||||||
|
x:Name="ConnProblem"
|
||||||
|
Visibility="Visible" />
|
||||||
|
<Image Source="Resources/icons/light/appbar.network.server.connecting.png"
|
||||||
|
Tag="ICO"
|
||||||
|
x:Name="Connecting"
|
||||||
|
Visibility="Visible">
|
||||||
|
<Image.Style>
|
||||||
|
<Style>
|
||||||
|
<Style.Triggers>
|
||||||
|
<EventTrigger RoutedEvent="Image.Loaded">
|
||||||
|
<BeginStoryboard>
|
||||||
|
<Storyboard>
|
||||||
|
<DoubleAnimation Storyboard.TargetProperty="(Image.Opacity)"
|
||||||
|
BeginTime="0:0:0"
|
||||||
|
Duration="0:0:0.75"
|
||||||
|
From="1.5"
|
||||||
|
To="0.0"
|
||||||
|
RepeatBehavior="Forever"
|
||||||
|
AutoReverse="True" />
|
||||||
|
</Storyboard>
|
||||||
|
</BeginStoryboard>
|
||||||
|
</EventTrigger>
|
||||||
|
</Style.Triggers>
|
||||||
|
</Style>
|
||||||
|
</Image.Style>
|
||||||
|
</Image>
|
||||||
|
<Border Visibility="Hidden"
|
||||||
|
Opacity="1"
|
||||||
|
x:Name="TopAbstract"
|
||||||
|
BorderThickness="0"
|
||||||
|
BorderBrush="Gray"
|
||||||
|
CornerRadius="0,0,0,0"
|
||||||
|
Width="{Binding ActualWidth, ElementName=Window, Mode=OneWay}">
|
||||||
|
<Border.Background>
|
||||||
|
<ImageBrush ImageSource="Resources/top_cp.png"
|
||||||
|
Stretch="UniformToFill" />
|
||||||
|
</Border.Background>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
<StackPanel Orientation="Horizontal"
|
||||||
|
Width="75"
|
||||||
|
DockPanel.Dock="Top"
|
||||||
|
ClipToBounds="false"
|
||||||
|
x:Name="btnSP"
|
||||||
|
HorizontalAlignment="Left">
|
||||||
|
<Canvas ClipToBounds="false"
|
||||||
|
Panel.ZIndex="1000"
|
||||||
|
Margin="0,0,0,0"
|
||||||
|
VerticalAlignment="Top"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
Height="620"
|
||||||
|
Width="75">
|
||||||
|
<Button Visibility="Hidden"
|
||||||
|
x:Name="BtnBack"
|
||||||
|
Tag="100"
|
||||||
|
Canvas.Top="0"
|
||||||
|
Canvas.Left="-1"
|
||||||
|
Width="70"
|
||||||
|
Height="50"
|
||||||
|
BorderThickness="0"
|
||||||
|
Style="{StaticResource FlatButtonStyle2}"
|
||||||
|
Panel.ZIndex="1000">
|
||||||
|
<Button.Template>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Canvas ClipToBounds="False"
|
||||||
|
Background="{Binding Background, ElementName=BtnBack}">
|
||||||
|
<ContentPresenter HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Canvas>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Button.Template>
|
||||||
|
<StackPanel Orientation="Horizontal"
|
||||||
|
Background="Transparent"
|
||||||
|
ClipToBounds="false"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Width="70">
|
||||||
|
<Image Source="Resources/icons/dark/appbar.home.gps.png"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Tag="ICO"
|
||||||
|
Stretch="Fill"
|
||||||
|
Width="60"
|
||||||
|
Height="50"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
VerticalAlignment="top"
|
||||||
|
Margin="5,0,0,0" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Tag="0"
|
||||||
|
x:Uid="1"
|
||||||
|
x:Name="BtnAnnouncements"
|
||||||
|
Visibility="Visible"
|
||||||
|
Style="{StaticResource FlatButtonStyle2}"
|
||||||
|
ToolTip="{x:Static resx:Resources.mo_announcement}"
|
||||||
|
BorderThickness="0"
|
||||||
|
Panel.ZIndex="1000"
|
||||||
|
Width="70"
|
||||||
|
Height="70"
|
||||||
|
Canvas.Left="0"
|
||||||
|
Canvas.Top="0">
|
||||||
|
<Button.Template>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Canvas ClipToBounds="False"
|
||||||
|
Background="{Binding Background, ElementName=BtnAnnouncements}">
|
||||||
|
<Canvas Panel.ZIndex="1000"
|
||||||
|
Height="70"
|
||||||
|
Width="80"
|
||||||
|
Margin="70,0,0,0">
|
||||||
|
<Polygon Visibility="Hidden"
|
||||||
|
x:Name="poly_main1"
|
||||||
|
Panel.ZIndex="900"
|
||||||
|
Points="0,0 10,0 10,70 0,70"
|
||||||
|
Fill="{Binding Background, ElementName=BtnAnnouncements}" />
|
||||||
|
</Canvas>
|
||||||
|
<ContentPresenter HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Canvas>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Button.Template>
|
||||||
|
<StackPanel Orientation="Horizontal"
|
||||||
|
Background="Transparent"
|
||||||
|
ClipToBounds="False"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center">
|
||||||
|
<Image Source="{DynamicResource nav_appbar_newspaper}"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Tag="ICO"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
x:Name="icoAnn"
|
||||||
|
Stretch="Fill"
|
||||||
|
Width="60"
|
||||||
|
Height="60"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Margin="5" />
|
||||||
|
<Image Source="Resources/StateOverlays/OverlayNewContentButton.png"
|
||||||
|
Visibility="Collapsed"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Tag="Signal"
|
||||||
|
Stretch="None"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Margin="-29,-29,0,0" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button x:Uid="2"
|
||||||
|
Panel.ZIndex="1000"
|
||||||
|
x:Name="BtnIncident"
|
||||||
|
Visibility="Hidden"
|
||||||
|
Style="{StaticResource FlatButtonStyle2}"
|
||||||
|
ToolTip="{x:Static resx:Resources.mo_incidents }"
|
||||||
|
BorderThickness="0"
|
||||||
|
Canvas.Top="0"
|
||||||
|
Width="70"
|
||||||
|
Height="70"
|
||||||
|
Canvas.Left="0">
|
||||||
|
<Button.Template>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Canvas ClipToBounds="False"
|
||||||
|
Background="{Binding Background, ElementName=BtnIncident}">
|
||||||
|
<Canvas Panel.ZIndex="1000"
|
||||||
|
Height="70"
|
||||||
|
Width="80"
|
||||||
|
Margin="70,0,0,0">
|
||||||
|
<Polygon Visibility="Hidden"
|
||||||
|
x:Name="poly_main2"
|
||||||
|
Panel.ZIndex="1000"
|
||||||
|
Points="0,0 10,0 10,70 0,70"
|
||||||
|
Fill="{Binding Background, ElementName=BtnIncident}" />
|
||||||
|
</Canvas>
|
||||||
|
<ContentPresenter HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Canvas>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Button.Template>
|
||||||
|
<StackPanel x:Name="StackPanel"
|
||||||
|
Orientation="Horizontal"
|
||||||
|
Background="Transparent">
|
||||||
|
<Image Source="{DynamicResource nav_appbar_clipboard_variant_text}"
|
||||||
|
x:Name="icoInc"
|
||||||
|
Tag="ICO"
|
||||||
|
Stretch="fill"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Width="60"
|
||||||
|
Height="60"
|
||||||
|
Margin="5" />
|
||||||
|
<Image Source="Resources/StateOverlays/OverlayNewContentButton.png"
|
||||||
|
Visibility="Collapsed"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Tag="Signal"
|
||||||
|
Stretch="None"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Margin="-29,-29,0,0" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Panel.ZIndex="1000"
|
||||||
|
x:Uid="3"
|
||||||
|
x:Name="BtnSsp"
|
||||||
|
Visibility="Hidden"
|
||||||
|
Style="{StaticResource FlatButtonStyle2}"
|
||||||
|
ToolTip="{x:Static resx:Resources.mo_ssp}"
|
||||||
|
BorderThickness="0"
|
||||||
|
Canvas.Top="0"
|
||||||
|
Width="70"
|
||||||
|
Height="70"
|
||||||
|
Canvas.Left="0">
|
||||||
|
<Button.Template>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Canvas ClipToBounds="false"
|
||||||
|
Background="{Binding Background, ElementName=BtnSsp}">
|
||||||
|
<Canvas Panel.ZIndex="1000"
|
||||||
|
Height="70"
|
||||||
|
Width="80"
|
||||||
|
Margin="70,0,0,0">
|
||||||
|
<Polygon Visibility="Hidden"
|
||||||
|
x:Name="poly_main3"
|
||||||
|
Panel.ZIndex="1000"
|
||||||
|
Points="0,0 10,0 10,70 0,70"
|
||||||
|
Fill="{Binding Background, ElementName=BtnSsp}" />
|
||||||
|
</Canvas>
|
||||||
|
<ContentPresenter HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Canvas>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Button.Template>
|
||||||
|
<StackPanel Orientation="Horizontal"
|
||||||
|
Background="Transparent">
|
||||||
|
<Image Source="{DynamicResource nav_appbar_cart}"
|
||||||
|
x:Name="icoSSP"
|
||||||
|
Stretch="fill"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Width="60"
|
||||||
|
Height="60"
|
||||||
|
Margin="5"
|
||||||
|
Tag="ICO" />
|
||||||
|
<Image Source="Resources/StateOverlays/OverlayNewContentButton.png"
|
||||||
|
Visibility="Collapsed"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Tag="Signal"
|
||||||
|
Stretch="None"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Margin="-29,-29,0,0" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button x:Name="BtnCustomLink"
|
||||||
|
x:Uid="4"
|
||||||
|
Margin="0,0,0,0"
|
||||||
|
Visibility="Hidden"
|
||||||
|
Style="{StaticResource FlatButtonStyle2}"
|
||||||
|
ToolTip="{x:Static resx:Resources.CustomLink}"
|
||||||
|
BorderThickness="0"
|
||||||
|
Canvas.Top="0"
|
||||||
|
Width="70"
|
||||||
|
Height="70"
|
||||||
|
Canvas.Left="0"
|
||||||
|
Panel.ZIndex="1000">
|
||||||
|
<Button.Template>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Canvas ClipToBounds="False"
|
||||||
|
Background="{Binding Background, ElementName=BtnCustomLink}">
|
||||||
|
<Canvas Panel.ZIndex="1000"
|
||||||
|
Height="70"
|
||||||
|
Width="80"
|
||||||
|
Margin="70,0,0,0">
|
||||||
|
<Polygon Visibility="Hidden"
|
||||||
|
x:Name="poly_main4"
|
||||||
|
Panel.ZIndex="90"
|
||||||
|
Points="0,0 10,0 10,70 0,70"
|
||||||
|
Fill="{Binding Background, ElementName=BtnCustomLink}" />
|
||||||
|
</Canvas>
|
||||||
|
<ContentPresenter HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Canvas>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Button.Template>
|
||||||
|
<StackPanel Orientation="Horizontal"
|
||||||
|
Background="Transparent">
|
||||||
|
<Image Source="{DynamicResource nav_appbar_star}"
|
||||||
|
x:Name="icoCustomLinks"
|
||||||
|
Tag="ICO"
|
||||||
|
Stretch="fill"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Width="60"
|
||||||
|
Height="60"
|
||||||
|
Margin="5" />
|
||||||
|
<Image Source="Resources/StateOverlays/OverlayNewContentButton.png"
|
||||||
|
Visibility="Collapsed"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Tag="Signal"
|
||||||
|
Stretch="None"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Margin="-29,-29,0,0" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button x:Name="BtnInfo"
|
||||||
|
x:Uid="5"
|
||||||
|
Margin="0,0,0,0"
|
||||||
|
Visibility="Hidden"
|
||||||
|
Style="{StaticResource FlatButtonStyle2}"
|
||||||
|
ToolTip="{x:Static resx:Resources.mo_information}"
|
||||||
|
BorderThickness="0"
|
||||||
|
Canvas.Top="0"
|
||||||
|
Width="70"
|
||||||
|
Height="70"
|
||||||
|
Canvas.Left="0"
|
||||||
|
Panel.ZIndex="1000">
|
||||||
|
<Button.Template>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Canvas ClipToBounds="False"
|
||||||
|
Background="{Binding Background, ElementName=BtnInfo}">
|
||||||
|
<Canvas Panel.ZIndex="1000"
|
||||||
|
Height="70"
|
||||||
|
Width="80"
|
||||||
|
Margin="70,0,0,0">
|
||||||
|
<Polygon Visibility="Hidden"
|
||||||
|
x:Name="poly_main4"
|
||||||
|
Panel.ZIndex="90"
|
||||||
|
Points="0,0 10,0 10,70 0,70"
|
||||||
|
Fill="{Binding Background, ElementName=BtnInfo}" />
|
||||||
|
</Canvas>
|
||||||
|
<ContentPresenter HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Canvas>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Button.Template>
|
||||||
|
<StackPanel Orientation="Horizontal"
|
||||||
|
Background="Transparent">
|
||||||
|
<Image Source="{DynamicResource nav_appbar_information}"
|
||||||
|
x:Name="icoInfo"
|
||||||
|
Tag="ICO"
|
||||||
|
Stretch="fill"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Width="60"
|
||||||
|
Height="60"
|
||||||
|
Margin="5" />
|
||||||
|
<Image Source="Resources/StateOverlays/OverlayNewContentButton.png"
|
||||||
|
Visibility="Collapsed"
|
||||||
|
Panel.ZIndex="18"
|
||||||
|
Style="{StaticResource ImageStyle}"
|
||||||
|
Tag="Signal"
|
||||||
|
Stretch="None"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Margin="-29,-29,0,0" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
</Canvas>
|
||||||
|
|
||||||
|
<Canvas Margin="0,0,0,0"
|
||||||
|
Panel.ZIndex="1"
|
||||||
|
ClipToBounds="False"
|
||||||
|
>
|
||||||
|
<Canvas x:Name="StPaMain"
|
||||||
|
Panel.ZIndex="1000"
|
||||||
|
Height="590"
|
||||||
|
Width="500"
|
||||||
|
Background="{DynamicResource backgroundColor}"
|
||||||
|
Canvas.Left="-75">
|
||||||
|
|
||||||
|
|
||||||
|
<uctrl:Announcements x:Name="AnnouncementCtrl"
|
||||||
|
Canvas.Left="10"
|
||||||
|
Canvas.Top="10"
|
||||||
|
Visibility="Visible"/>
|
||||||
|
|
||||||
|
<uctrl:ComputerInformation x:Name="ComputerInfoCtrl"
|
||||||
|
Canvas.Left="12"
|
||||||
|
Canvas.Top="10"
|
||||||
|
Visibility="Collapsed"/>
|
||||||
|
|
||||||
|
<uctrl:Incidents x:Name="IncidentCtrl"
|
||||||
|
Canvas.Left="0"
|
||||||
|
Canvas.Top="10"
|
||||||
|
Visibility="Collapsed" />
|
||||||
|
|
||||||
|
<uctrl:PortalSearch x:Name="PortalSearchCtrl"
|
||||||
|
Canvas.Left="0"
|
||||||
|
Canvas.Top="10"
|
||||||
|
Visibility="Collapsed"/>
|
||||||
|
|
||||||
|
<uctrl:CustomLinks x:Name="CustomLinksCtrl"
|
||||||
|
Canvas.Left="0"
|
||||||
|
Visibility="Collapsed" />
|
||||||
|
|
||||||
|
</Canvas>
|
||||||
|
</Canvas>
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
</DockPanel>
|
||||||
|
<Image Source="Resources/United-Kingdom-Flag-icon.png"
|
||||||
|
Panel.ZIndex="1001"
|
||||||
|
VerticalAlignment="Bottom"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
Stretch="None"
|
||||||
|
Margin="80,0,0,140" />
|
||||||
|
</Grid>
|
||||||
|
</Window>
|
||||||
|
|
||||||
1904
MainWindow.xaml.cs
Normal file
BIN
Matrix42Libs/C4IT.API.Contracts.dll
Normal file
BIN
Matrix42Libs/Matrix42.BizLogic.Common.dll
Normal file
BIN
Matrix42Libs/Matrix42.Common.dll
Normal file
BIN
Matrix42Libs/Matrix42.Contracts.Common.dll
Normal file
BIN
Matrix42Libs/Matrix42.Pandora.Contracts.dll
Normal file
BIN
Matrix42Libs/Microsoft.Net.Http.Headers.dll
Normal file
BIN
Matrix42Libs/Owin.dll
Normal file
BIN
Matrix42Libs/System.Web.Http.dll
Normal file
BIN
Matrix42Libs/log4net.dll
Normal file
BIN
Matrix42Libs/update4u.SPS.Contracts.dll
Normal file
BIN
Matrix42Libs/update4u.SPS.DataLayer.dll
Normal file
BIN
Matrix42Libs/update4u.SPS.DatabaseFileStorage.dll
Normal file
17
Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Media;
|
||||||
|
|
||||||
|
[assembly: AssemblyTitle("Customer Panel Client")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
[assembly: DisableDpiAwareness]
|
||||||
|
[assembly: ThemeInfo(
|
||||||
|
ResourceDictionaryLocation.None,
|
||||||
|
ResourceDictionaryLocation.SourceAssembly
|
||||||
|
)]
|
||||||
996
Properties/Resources.Designer.cs
generated
Normal file
@@ -0,0 +1,996 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace C4IT_CustomerPanel.Properties {
|
||||||
|
using System;
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
/// </summary>
|
||||||
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
|
// class via a tool like ResGen or Visual Studio.
|
||||||
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
|
// with the /str option, or rebuild your VS project.
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
public class Resources {
|
||||||
|
|
||||||
|
private static global::System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
|
internal Resources() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the cached ResourceManager instance used by this class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
public static global::System.Resources.ResourceManager ResourceManager {
|
||||||
|
get {
|
||||||
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("C4IT_CustomerPanel.Properties.Resources", typeof(Resources).Assembly);
|
||||||
|
resourceMan = temp;
|
||||||
|
}
|
||||||
|
return resourceMan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Overrides the current thread's CurrentUICulture property for all
|
||||||
|
/// resource lookups using this strongly typed resource class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
public static global::System.Globalization.CultureInfo Culture {
|
||||||
|
get {
|
||||||
|
return resourceCulture;
|
||||||
|
}
|
||||||
|
set {
|
||||||
|
resourceCulture = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to #186292.
|
||||||
|
/// </summary>
|
||||||
|
public static string activeButtonColor {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("activeButtonColor", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Announcements.
|
||||||
|
/// </summary>
|
||||||
|
public static string announcement {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("announcement", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap appbar_cart {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("appbar_cart", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap appbar_checkmark_cross {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("appbar_checkmark_cross", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap appbar_checkmark_thick_unchecked {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("appbar_checkmark_thick_unchecked", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap appbar_clipboard_variant_text {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("appbar_clipboard_variant_text", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap appbar_information {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("appbar_information", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap appbar_newspaper {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("appbar_newspaper", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap appbar_star {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("appbar_star", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to #FFCDC9C9.
|
||||||
|
/// </summary>
|
||||||
|
public static string backgroundColor {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("backgroundColor", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to #186292.
|
||||||
|
/// </summary>
|
||||||
|
public static string blueColor {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("blueColor", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Icon C4IT_2016_32 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("C4IT_2016_32", resourceCulture);
|
||||||
|
return ((System.Drawing.Icon)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Call announcement details.
|
||||||
|
/// </summary>
|
||||||
|
public static string CallAnnonceDetails {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("CallAnnonceDetails", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Call ticket details.
|
||||||
|
/// </summary>
|
||||||
|
public static string CallTicketDetails {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("CallTicketDetails", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Close.
|
||||||
|
/// </summary>
|
||||||
|
public static string close {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("close", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap CloseMenu {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("CloseMenu", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Computername:.
|
||||||
|
/// </summary>
|
||||||
|
public static string computername {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("computername", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Show configuration.
|
||||||
|
/// </summary>
|
||||||
|
public static string config {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("config", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Connection failed: {0:MM/dd/yy h:mm:ss tt}.
|
||||||
|
/// </summary>
|
||||||
|
public static string ConnectionFailed {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ConnectionFailed", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap consulting4it_header1 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("consulting4it_header1", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to The image must not be zero..
|
||||||
|
/// </summary>
|
||||||
|
public static string Converter_ConvertImageToWpfImage_Image_darf_nicht_null_sein_ {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Converter_ConvertImageToWpfImage_Image_darf_nicht_null_sein_", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Copied to clipboard.
|
||||||
|
/// </summary>
|
||||||
|
public static string copied {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("copied", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Create New Ticket.
|
||||||
|
/// </summary>
|
||||||
|
public static string createNewTicket {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("createNewTicket", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Customer Panel.
|
||||||
|
/// </summary>
|
||||||
|
public static string customerPanel {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("customerPanel", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Useful Links.
|
||||||
|
/// </summary>
|
||||||
|
public static string CustomLink {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("CustomLink", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Presentation mode.
|
||||||
|
/// </summary>
|
||||||
|
public static string dnd {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("dnd", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Disable notifications always.
|
||||||
|
/// </summary>
|
||||||
|
public static string dndActivate {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("dndActivate", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Show notifications always.
|
||||||
|
/// </summary>
|
||||||
|
public static string dndDeactivate {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("dndDeactivate", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Use Windows presentation mode.
|
||||||
|
/// </summary>
|
||||||
|
public static string dndFromOS {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("dndFromOS", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Local drives:.
|
||||||
|
/// </summary>
|
||||||
|
public static string drives {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("drives", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Enable notifier.
|
||||||
|
/// </summary>
|
||||||
|
public static string enableNotifier {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("enableNotifier", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Generate.
|
||||||
|
/// </summary>
|
||||||
|
public static string genReport {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("genReport", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Computer Information Report.
|
||||||
|
/// </summary>
|
||||||
|
public static string genReportHeader {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("genReportHeader", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap Germany_Flag_icon {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Germany_Flag_icon", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to #FFCDC9C9.
|
||||||
|
/// </summary>
|
||||||
|
public static string headerColor {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("headerColor", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Remote Hostname:.
|
||||||
|
/// </summary>
|
||||||
|
public static string Hostname {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Hostname", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to #186292.
|
||||||
|
/// </summary>
|
||||||
|
public static string inactiveButtonColor {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("inactiveButtonColor", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Tickets.
|
||||||
|
/// </summary>
|
||||||
|
public static string incidents {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("incidents", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap info1 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("info1", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Information.
|
||||||
|
/// </summary>
|
||||||
|
public static string information {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("information", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to IP address:.
|
||||||
|
/// </summary>
|
||||||
|
public static string ipaddress {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ipaddress", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to German.
|
||||||
|
/// </summary>
|
||||||
|
public static string langDE {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("langDE", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Select language.
|
||||||
|
/// </summary>
|
||||||
|
public static string langMenu {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("langMenu", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to System default ({0}).
|
||||||
|
/// </summary>
|
||||||
|
public static string langSystemDefault {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("langSystemDefault", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to English.
|
||||||
|
/// </summary>
|
||||||
|
public static string langUS {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("langUS", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Last reboot:.
|
||||||
|
/// </summary>
|
||||||
|
public static string lastreboot {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("lastreboot", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to / Server configuration version too low.
|
||||||
|
/// </summary>
|
||||||
|
public static string LowServerVersion {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("LowServerVersion", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Authentication settings.
|
||||||
|
/// </summary>
|
||||||
|
public static string m42Authentication {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("m42Authentication", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap Magnify {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Magnify", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap Magnify1 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Magnify1", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to / Next Refresh: {0:h:mm tt}.
|
||||||
|
/// </summary>
|
||||||
|
public static string MainWindow_updateTimer_Refresh__ {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("MainWindow_updateTimer_Refresh__", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap Matrix42 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Matrix42", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Matrix42 Login.
|
||||||
|
/// </summary>
|
||||||
|
public static string Matrix42_Login {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Matrix42 Login", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap Matrix421 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("Matrix421", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Current announcements.
|
||||||
|
/// </summary>
|
||||||
|
public static string mo_announcement {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("mo_announcement", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to My tickets.
|
||||||
|
/// </summary>
|
||||||
|
public static string mo_incidents {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("mo_incidents", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Information about my asset.
|
||||||
|
/// </summary>
|
||||||
|
public static string mo_information {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("mo_information", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Portal search, links to Self-Service Portal and My Services.
|
||||||
|
/// </summary>
|
||||||
|
public static string mo_ssp {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("mo_ssp", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to My Services.
|
||||||
|
/// </summary>
|
||||||
|
public static string myservices {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("myservices", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to New Announcements.
|
||||||
|
/// </summary>
|
||||||
|
public static string newAnnouncement {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("newAnnouncement", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to There are new announcements for you..
|
||||||
|
/// </summary>
|
||||||
|
public static string NewAnnouncementsMessage {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("NewAnnouncementsMessage", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to There is new information about your tickets..
|
||||||
|
/// </summary>
|
||||||
|
public static string NewTicketInfoMessage {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("NewTicketInfoMessage", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to New ticket informations.
|
||||||
|
/// </summary>
|
||||||
|
public static string NewTicketInfoTitle {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("NewTicketInfoTitle", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to No Announcements.
|
||||||
|
/// </summary>
|
||||||
|
public static string noannouncement {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("noannouncement", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to No tickets.
|
||||||
|
/// </summary>
|
||||||
|
public static string noincidents {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("noincidents", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Notification.
|
||||||
|
/// </summary>
|
||||||
|
public static string NotificationMenu {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("NotificationMenu", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Popup Customer Panel.
|
||||||
|
/// </summary>
|
||||||
|
public static string NotificationMenuDirect {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("NotificationMenuDirect", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Use Windows notifications.
|
||||||
|
/// </summary>
|
||||||
|
public static string NotificationMenuOsDefault {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("NotificationMenuOsDefault", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap NotifyByCP {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("NotifyByCP", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap NotifyByOS {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("NotifyByOS", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap NotifyMenu {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("NotifyMenu", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to #F39200.
|
||||||
|
/// </summary>
|
||||||
|
public static string orangeColor {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("orangeColor", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap PresentationModeOff {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("PresentationModeOff", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap PresentationModeOn {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("PresentationModeOn", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Remove markup.
|
||||||
|
/// </summary>
|
||||||
|
public static string removeMarkup {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("removeMarkup", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Remove all markups.
|
||||||
|
/// </summary>
|
||||||
|
public static string removeMarkups {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("removeMarkups", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Search.
|
||||||
|
/// </summary>
|
||||||
|
public static string search {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("search", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap SettingsMenu {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("SettingsMenu", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Click for more details.
|
||||||
|
/// </summary>
|
||||||
|
public static string ShowMoreDetailsToolTip {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ShowMoreDetailsToolTip", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Show notifier example.
|
||||||
|
/// </summary>
|
||||||
|
public static string showNotifierExample {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("showNotifierExample", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Self Service.
|
||||||
|
/// </summary>
|
||||||
|
public static string ssp {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ssp", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Subject.
|
||||||
|
/// </summary>
|
||||||
|
public static string subject {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("subject", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap SystemLanguage {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("SystemLanguage", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket accepted.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketAccepted {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketAccepted", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket closed.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketClosed {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketClosed", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket created.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketCreatedByAgent {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketCreatedByAgent", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket created via Mail.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketCreatedByMail {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketCreatedByMail", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket created via SSP.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketCreatedBySSP {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketCreatedBySSP", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Forwarded to responsible role.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketForwardedToRole {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketForwardedToRole", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Forwarded to responsible.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketForwardedToUser {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketForwardedToUser", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket take in progress.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketInProgress {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketInProgress", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Mail answer received.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketMailAnswer {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketMailAnswer", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Mail sent.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketMailSend {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketMailSend", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket merged.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketMerged {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketMerged", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to New Comment.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketNewComment {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketNewComment", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket paused.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketPaused {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketPaused", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Posted back to role.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketPostedback {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketPostedback", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Ticket takeover.
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketTakeover {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketTakeover", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to .
|
||||||
|
/// </summary>
|
||||||
|
public static string ticketTakover {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("ticketTakover", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
public static System.Drawing.Bitmap United_Kingdom_Flag_icon {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("United_Kingdom_Flag_icon", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Username:.
|
||||||
|
/// </summary>
|
||||||
|
public static string username {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("username", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
0
Properties/Resources.de.Designer.cs
generated
Normal file
328
Properties/Resources.de.resx
Normal file
@@ -0,0 +1,328 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="Matrix42" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name="announcement" xml:space="preserve">
|
||||||
|
<value>Ankündigung</value>
|
||||||
|
</data>
|
||||||
|
<data name="computername" xml:space="preserve">
|
||||||
|
<value>Computername:</value>
|
||||||
|
</data>
|
||||||
|
<data name="drives" xml:space="preserve">
|
||||||
|
<value>Lokale Laufwerke:</value>
|
||||||
|
</data>
|
||||||
|
<data name="incidents" xml:space="preserve">
|
||||||
|
<value>Tickets</value>
|
||||||
|
</data>
|
||||||
|
<data name="ipaddress" xml:space="preserve">
|
||||||
|
<value>IP-Adresse:</value>
|
||||||
|
</data>
|
||||||
|
<data name="lastreboot" xml:space="preserve">
|
||||||
|
<value>Letzter Neustart:</value>
|
||||||
|
</data>
|
||||||
|
<data name="myservices" xml:space="preserve">
|
||||||
|
<value>Meine Services</value>
|
||||||
|
</data>
|
||||||
|
<data name="noannouncement" xml:space="preserve">
|
||||||
|
<value>Keine Ankündigung</value>
|
||||||
|
</data>
|
||||||
|
<data name="noincidents" xml:space="preserve">
|
||||||
|
<value>Keine Tickets vorhanden</value>
|
||||||
|
</data>
|
||||||
|
<data name="search" xml:space="preserve">
|
||||||
|
<value>Suche</value>
|
||||||
|
</data>
|
||||||
|
<data name="information" xml:space="preserve">
|
||||||
|
<value>Information</value>
|
||||||
|
</data>
|
||||||
|
<data name="ssp" xml:space="preserve">
|
||||||
|
<value>Self Service</value>
|
||||||
|
</data>
|
||||||
|
<data name="close" xml:space="preserve">
|
||||||
|
<value>Beenden</value>
|
||||||
|
</data>
|
||||||
|
<data name="config" xml:space="preserve">
|
||||||
|
<value>Konfiguration anzeigen</value>
|
||||||
|
</data>
|
||||||
|
<data name="dnd" xml:space="preserve">
|
||||||
|
<value>Präsentationsmodus</value>
|
||||||
|
</data>
|
||||||
|
<data name="subject" xml:space="preserve">
|
||||||
|
<value>Betreff</value>
|
||||||
|
</data>
|
||||||
|
<data name="username" xml:space="preserve">
|
||||||
|
<value>Benutzername:</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_announcement" xml:space="preserve">
|
||||||
|
<value>Aktuelle Ankündigungen</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_incidents" xml:space="preserve">
|
||||||
|
<value>Meine Tickets</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_information" xml:space="preserve">
|
||||||
|
<value>Informationen zu meinem Asset</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_ssp" xml:space="preserve">
|
||||||
|
<value>Portalsuche, Links zum Self-Service-Portal und zu Meine Dienste</value>
|
||||||
|
</data>
|
||||||
|
<data name="Converter_ConvertImageToWpfImage_Image_darf_nicht_null_sein_" xml:space="preserve">
|
||||||
|
<value>Image darf nicht null sein.</value>
|
||||||
|
</data>
|
||||||
|
<data name="MainWindow_updateTimer_Refresh__" xml:space="preserve">
|
||||||
|
<value> / Nächste Aktualisierung: {0:H:mm} Uhr</value>
|
||||||
|
</data>
|
||||||
|
<data name="copied" xml:space="preserve">
|
||||||
|
<value>In Zwischenablage kopiert</value>
|
||||||
|
</data>
|
||||||
|
<data name="genReport" xml:space="preserve">
|
||||||
|
<value>Erstellen</value>
|
||||||
|
</data>
|
||||||
|
<data name="langDE" xml:space="preserve">
|
||||||
|
<value>Deutsch</value>
|
||||||
|
</data>
|
||||||
|
<data name="langUS" xml:space="preserve">
|
||||||
|
<value>Englisch</value>
|
||||||
|
</data>
|
||||||
|
<data name="CallAnnonceDetails" xml:space="preserve">
|
||||||
|
<value>Details zur Ankündigung aufrufen</value>
|
||||||
|
</data>
|
||||||
|
<data name="CallTicketDetails" xml:space="preserve">
|
||||||
|
<value>Ticket Details aufrufen</value>
|
||||||
|
</data>
|
||||||
|
<data name="newAnnouncement" xml:space="preserve">
|
||||||
|
<value>Neue Ankündigungen</value>
|
||||||
|
</data>
|
||||||
|
<data name="dndDeactivate" xml:space="preserve">
|
||||||
|
<value>Benachrichtigungen immer anzeigen</value>
|
||||||
|
</data>
|
||||||
|
<data name="enableNotifier" xml:space="preserve">
|
||||||
|
<value>Notifier anzeigen</value>
|
||||||
|
</data>
|
||||||
|
<data name="dndActivate" xml:space="preserve">
|
||||||
|
<value>keine Benachrichtigungen</value>
|
||||||
|
</data>
|
||||||
|
<data name="showNotifierExample" xml:space="preserve">
|
||||||
|
<value>Notifier Beispiel zeigen</value>
|
||||||
|
</data>
|
||||||
|
<data name="langMenu" xml:space="preserve">
|
||||||
|
<value>Sprache auswählen</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotificationMenu" xml:space="preserve">
|
||||||
|
<value>Benachrichtigung</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotificationMenuDirect" xml:space="preserve">
|
||||||
|
<value>Customer Panel direkt öffnen</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotificationMenuOsDefault" xml:space="preserve">
|
||||||
|
<value>Windows Benachrichtigungen nutzen</value>
|
||||||
|
</data>
|
||||||
|
<data name="dndFromOS" xml:space="preserve">
|
||||||
|
<value>Windows Präsentationsmodus berücksichtigen</value>
|
||||||
|
</data>
|
||||||
|
<data name="ConnectionFailed" xml:space="preserve">
|
||||||
|
<value>Verbindung fehlgeschlagen: {0:dd/MM/yy H:mm:ss}</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketAccepted" xml:space="preserve">
|
||||||
|
<value>Ticket angenommen</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketClosed" xml:space="preserve">
|
||||||
|
<value>Ticket geschlossen</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketCreatedByAgent" xml:space="preserve">
|
||||||
|
<value>Ticket erstellt</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketCreatedByMail" xml:space="preserve">
|
||||||
|
<value>Ticket erstellt per Mail</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketCreatedBySSP" xml:space="preserve">
|
||||||
|
<value>Ticket erstellt per SSP</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketForwardedToRole" xml:space="preserve">
|
||||||
|
<value>An Verantwortlicherolle weitergeleitet</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketForwardedToUser" xml:space="preserve">
|
||||||
|
<value>An Verantwortlichen weitergeleitet</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketInProgress" xml:space="preserve">
|
||||||
|
<value>In Bearbeitung genommen</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketMailAnswer" xml:space="preserve">
|
||||||
|
<value>Mailantwort erhalten</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketMailSend" xml:space="preserve">
|
||||||
|
<value>E-Mail verschickt</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketMerged" xml:space="preserve">
|
||||||
|
<value>Ticket zusammengeführt</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketNewComment" xml:space="preserve">
|
||||||
|
<value>Neuer Kommentar</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketPaused" xml:space="preserve">
|
||||||
|
<value>Ticket pausiert</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketPostedback" xml:space="preserve">
|
||||||
|
<value>An Rolle zurückgegben</value>
|
||||||
|
</data>
|
||||||
|
<data name="LowServerVersion" xml:space="preserve">
|
||||||
|
<value> / Server Konfigurationsversion zu niedrig</value>
|
||||||
|
</data>
|
||||||
|
<data name="NewAnnouncementsMessage" xml:space="preserve">
|
||||||
|
<value>Es stehen neue Ankündigungen für Sie bereit.</value>
|
||||||
|
</data>
|
||||||
|
<data name="NewTicketInfoMessage" xml:space="preserve">
|
||||||
|
<value>Zu Ihren Tickets gibt es neue Informationen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="NewTicketInfoTitle" xml:space="preserve">
|
||||||
|
<value>Neue Ticket Informationen</value>
|
||||||
|
</data>
|
||||||
|
<data name="CustomLink" xml:space="preserve">
|
||||||
|
<value>Nützliche Links</value>
|
||||||
|
</data>
|
||||||
|
<data name="removeMarkup" xml:space="preserve">
|
||||||
|
<value>Markierung entfernen</value>
|
||||||
|
</data>
|
||||||
|
<data name="removeMarkups" xml:space="preserve">
|
||||||
|
<value>Alle Markierungen entfernen</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketTakover" xml:space="preserve">
|
||||||
|
<value>Ticket übernommen</value>
|
||||||
|
</data>
|
||||||
|
<data name="createNewTicket" xml:space="preserve">
|
||||||
|
<value>Neues Ticket erstellen</value>
|
||||||
|
</data>
|
||||||
|
<data name="m42Authentication" xml:space="preserve">
|
||||||
|
<value>Authentifizierungseinstellungen</value>
|
||||||
|
</data>
|
||||||
|
<data name="Matrix42 Login" xml:space="preserve">
|
||||||
|
<value>Matrix42 Anmeldung</value>
|
||||||
|
</data>
|
||||||
|
<data name="Hostname" xml:space="preserve">
|
||||||
|
<value>Remote Hostname:</value>
|
||||||
|
</data>
|
||||||
|
<data name="genReportHeader" xml:space="preserve">
|
||||||
|
<value>Computer-Informationsbericht</value>
|
||||||
|
</data>
|
||||||
|
<data name="ShowMoreDetailsToolTip" xml:space="preserve">
|
||||||
|
<value>Für weitere Details hier klicken</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
424
Properties/Resources.resx
Normal file
@@ -0,0 +1,424 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="consulting4it_header1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\consulting4it-header1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="info1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\info1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="C4IT_2016_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\C4IT_2016.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="Magnify" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Magnify.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="Magnify1" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\inaktiv\Magnify.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="Matrix42" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Matrix42.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="Matrix421" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\inaktiv\Matrix42.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="announcement" xml:space="preserve">
|
||||||
|
<value>Announcements</value>
|
||||||
|
</data>
|
||||||
|
<data name="blueColor" xml:space="preserve">
|
||||||
|
<value>#186292</value>
|
||||||
|
</data>
|
||||||
|
<data name="computername" xml:space="preserve">
|
||||||
|
<value>Computername:</value>
|
||||||
|
</data>
|
||||||
|
<data name="drives" xml:space="preserve">
|
||||||
|
<value>Local drives:</value>
|
||||||
|
</data>
|
||||||
|
<data name="incidents" xml:space="preserve">
|
||||||
|
<value>Tickets</value>
|
||||||
|
</data>
|
||||||
|
<data name="ipaddress" xml:space="preserve">
|
||||||
|
<value>IP address:</value>
|
||||||
|
</data>
|
||||||
|
<data name="lastreboot" xml:space="preserve">
|
||||||
|
<value>Last reboot:</value>
|
||||||
|
</data>
|
||||||
|
<data name="myservices" xml:space="preserve">
|
||||||
|
<value>My Services</value>
|
||||||
|
</data>
|
||||||
|
<data name="noannouncement" xml:space="preserve">
|
||||||
|
<value>No Announcements</value>
|
||||||
|
</data>
|
||||||
|
<data name="noincidents" xml:space="preserve">
|
||||||
|
<value>No tickets</value>
|
||||||
|
</data>
|
||||||
|
<data name="orangeColor" xml:space="preserve">
|
||||||
|
<value>#F39200</value>
|
||||||
|
</data>
|
||||||
|
<data name="search" xml:space="preserve">
|
||||||
|
<value>Search</value>
|
||||||
|
</data>
|
||||||
|
<data name="information" xml:space="preserve">
|
||||||
|
<value>Information</value>
|
||||||
|
</data>
|
||||||
|
<data name="ssp" xml:space="preserve">
|
||||||
|
<value>Self Service</value>
|
||||||
|
</data>
|
||||||
|
<data name="close" xml:space="preserve">
|
||||||
|
<value>Close</value>
|
||||||
|
</data>
|
||||||
|
<data name="config" xml:space="preserve">
|
||||||
|
<value>Show configuration</value>
|
||||||
|
</data>
|
||||||
|
<data name="dnd" xml:space="preserve">
|
||||||
|
<value>Presentation mode</value>
|
||||||
|
</data>
|
||||||
|
<data name="subject" xml:space="preserve">
|
||||||
|
<value>Subject</value>
|
||||||
|
</data>
|
||||||
|
<data name="username" xml:space="preserve">
|
||||||
|
<value>Username:</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_announcement" xml:space="preserve">
|
||||||
|
<value>Current announcements</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_incidents" xml:space="preserve">
|
||||||
|
<value>My tickets</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_information" xml:space="preserve">
|
||||||
|
<value>Information about my asset</value>
|
||||||
|
</data>
|
||||||
|
<data name="mo_ssp" xml:space="preserve">
|
||||||
|
<value>Portal search, links to Self-Service Portal and My Services</value>
|
||||||
|
</data>
|
||||||
|
<data name="Converter_ConvertImageToWpfImage_Image_darf_nicht_null_sein_" xml:space="preserve">
|
||||||
|
<value>The image must not be zero.</value>
|
||||||
|
</data>
|
||||||
|
<data name="MainWindow_updateTimer_Refresh__" xml:space="preserve">
|
||||||
|
<value> / Next Refresh: {0:h:mm tt}</value>
|
||||||
|
</data>
|
||||||
|
<data name="copied" xml:space="preserve">
|
||||||
|
<value>Copied to clipboard</value>
|
||||||
|
</data>
|
||||||
|
<data name="genReport" xml:space="preserve">
|
||||||
|
<value>Generate</value>
|
||||||
|
</data>
|
||||||
|
<data name="Germany_Flag_icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Germany-Flag-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="langDE" xml:space="preserve">
|
||||||
|
<value>German</value>
|
||||||
|
</data>
|
||||||
|
<data name="langUS" xml:space="preserve">
|
||||||
|
<value>English</value>
|
||||||
|
</data>
|
||||||
|
<data name="United_Kingdom_Flag_icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\United-Kingdom-Flag-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="CallAnnonceDetails" xml:space="preserve">
|
||||||
|
<value>Call announcement details</value>
|
||||||
|
</data>
|
||||||
|
<data name="CallTicketDetails" xml:space="preserve">
|
||||||
|
<value>Call ticket details</value>
|
||||||
|
</data>
|
||||||
|
<data name="activeButtonColor" xml:space="preserve">
|
||||||
|
<value>#186292</value>
|
||||||
|
</data>
|
||||||
|
<data name="backgroundColor" xml:space="preserve">
|
||||||
|
<value>#FFCDC9C9</value>
|
||||||
|
</data>
|
||||||
|
<data name="headerColor" xml:space="preserve">
|
||||||
|
<value>#FFCDC9C9</value>
|
||||||
|
</data>
|
||||||
|
<data name="inactiveButtonColor" xml:space="preserve">
|
||||||
|
<value>#186292</value>
|
||||||
|
</data>
|
||||||
|
<data name="newAnnouncement" xml:space="preserve">
|
||||||
|
<value>New Announcements</value>
|
||||||
|
</data>
|
||||||
|
<data name="appbar_cart" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\light\appbar.cart.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="appbar_checkmark_cross" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\light\appbar.checkmark.cross.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="appbar_checkmark_thick_unchecked" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\light\appbar.checkmark.thick.unchecked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="appbar_clipboard_variant_text" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\light\appbar.clipboard.variant.text.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="appbar_information" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\light\appbar.information.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="appbar_newspaper" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\light\appbar.newspaper.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="dndDeactivate" xml:space="preserve">
|
||||||
|
<value>Show notifications always</value>
|
||||||
|
</data>
|
||||||
|
<data name="enableNotifier" xml:space="preserve">
|
||||||
|
<value>Enable notifier</value>
|
||||||
|
</data>
|
||||||
|
<data name="dndActivate" xml:space="preserve">
|
||||||
|
<value>Disable notifications always</value>
|
||||||
|
</data>
|
||||||
|
<data name="showNotifierExample" xml:space="preserve">
|
||||||
|
<value>Show notifier example</value>
|
||||||
|
</data>
|
||||||
|
<data name="CloseMenu" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\CloseMenu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="langMenu" xml:space="preserve">
|
||||||
|
<value>Select language</value>
|
||||||
|
</data>
|
||||||
|
<data name="langSystemDefault" xml:space="preserve">
|
||||||
|
<value>System default ({0})</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotificationMenu" xml:space="preserve">
|
||||||
|
<value>Notification</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotificationMenuDirect" xml:space="preserve">
|
||||||
|
<value>Popup Customer Panel</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotificationMenuOsDefault" xml:space="preserve">
|
||||||
|
<value>Use Windows notifications</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotifyByCP" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\NotifyByCP.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotifyByOS" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\NotifyByOS.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="NotifyMenu" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\NotifyMenu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="SystemLanguage" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\SystemLanguage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="dndFromOS" xml:space="preserve">
|
||||||
|
<value>Use Windows presentation mode</value>
|
||||||
|
</data>
|
||||||
|
<data name="PresentationModeOff" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\PresentationModeOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="PresentationModeOn" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\PresentationModeOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingsMenu" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\SettingsMenu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="ConnectionFailed" xml:space="preserve">
|
||||||
|
<value>Connection failed: {0:MM/dd/yy h:mm:ss tt}</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketAccepted" xml:space="preserve">
|
||||||
|
<value>Ticket accepted</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketClosed" xml:space="preserve">
|
||||||
|
<value>Ticket closed</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketCreatedByAgent" xml:space="preserve">
|
||||||
|
<value>Ticket created</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketCreatedByMail" xml:space="preserve">
|
||||||
|
<value>Ticket created via Mail</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketCreatedBySSP" xml:space="preserve">
|
||||||
|
<value>Ticket created via SSP</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketForwardedToRole" xml:space="preserve">
|
||||||
|
<value>Forwarded to responsible role</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketForwardedToUser" xml:space="preserve">
|
||||||
|
<value>Forwarded to responsible</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketInProgress" xml:space="preserve">
|
||||||
|
<value>Ticket take in progress</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketMailAnswer" xml:space="preserve">
|
||||||
|
<value>Mail answer received</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketMailSend" xml:space="preserve">
|
||||||
|
<value>Mail sent</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketMerged" xml:space="preserve">
|
||||||
|
<value>Ticket merged</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketNewComment" xml:space="preserve">
|
||||||
|
<value>New Comment</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketPaused" xml:space="preserve">
|
||||||
|
<value>Ticket paused</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketPostedback" xml:space="preserve">
|
||||||
|
<value>Posted back to role</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketTakeover" xml:space="preserve">
|
||||||
|
<value>Ticket takeover</value>
|
||||||
|
</data>
|
||||||
|
<data name="LowServerVersion" xml:space="preserve">
|
||||||
|
<value> / Server configuration version too low</value>
|
||||||
|
</data>
|
||||||
|
<data name="NewAnnouncementsMessage" xml:space="preserve">
|
||||||
|
<value>There are new announcements for you.</value>
|
||||||
|
</data>
|
||||||
|
<data name="NewTicketInfoMessage" xml:space="preserve">
|
||||||
|
<value>There is new information about your tickets.</value>
|
||||||
|
</data>
|
||||||
|
<data name="NewTicketInfoTitle" xml:space="preserve">
|
||||||
|
<value>New ticket informations</value>
|
||||||
|
</data>
|
||||||
|
<data name="appbar_star" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons\light\appbar.star.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="CustomLink" xml:space="preserve">
|
||||||
|
<value>Useful Links</value>
|
||||||
|
</data>
|
||||||
|
<data name="removeMarkup" xml:space="preserve">
|
||||||
|
<value>Remove markup</value>
|
||||||
|
</data>
|
||||||
|
<data name="removeMarkups" xml:space="preserve">
|
||||||
|
<value>Remove all markups</value>
|
||||||
|
</data>
|
||||||
|
<data name="ticketTakover" xml:space="preserve">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name="createNewTicket" xml:space="preserve">
|
||||||
|
<value>Create New Ticket</value>
|
||||||
|
</data>
|
||||||
|
<data name="m42Authentication" xml:space="preserve">
|
||||||
|
<value>Authentication settings</value>
|
||||||
|
</data>
|
||||||
|
<data name="Matrix42 Login" xml:space="preserve">
|
||||||
|
<value>Matrix42 Login</value>
|
||||||
|
</data>
|
||||||
|
<data name="Hostname" xml:space="preserve">
|
||||||
|
<value>Remote Hostname:</value>
|
||||||
|
</data>
|
||||||
|
<data name="customerPanel" xml:space="preserve">
|
||||||
|
<value>Customer Panel</value>
|
||||||
|
</data>
|
||||||
|
<data name="genReportHeader" xml:space="preserve">
|
||||||
|
<value>Computer Information Report</value>
|
||||||
|
</data>
|
||||||
|
<data name="ShowMoreDetailsToolTip" xml:space="preserve">
|
||||||
|
<value>Click for more details</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
26
Properties/Settings.Designer.cs
generated
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace C4IT_CustomerPanel.Properties {
|
||||||
|
|
||||||
|
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.11.0.0")]
|
||||||
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||||
|
|
||||||
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
|
public static Settings Default {
|
||||||
|
get {
|
||||||
|
return defaultInstance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
Properties/Settings.settings
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
|
||||||
|
<Profiles>
|
||||||
|
<Profile Name="(Default)" />
|
||||||
|
</Profiles>
|
||||||
|
<Settings />
|
||||||
|
</SettingsFile>
|
||||||
9
Properties/SharedAssemblyInfo.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: AssemblyCompany("Consulting4IT GmbH, Germany")]
|
||||||
|
[assembly: AssemblyProduct("Customer Panel")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2025, Consulting4IT GmbH, Germany")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
|
||||||
|
[assembly: AssemblyInformationalVersion("3.10.0.1")]
|
||||||
|
[assembly: AssemblyVersion("3.10.*")]
|
||||||
70
Properties/app.manifest
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<assemblyIdentity version="1.0.0.0" name="MyApplication.app" />
|
||||||
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!-- UAC-Manifestoptionen
|
||||||
|
Wenn Sie die Ebene der Benutzerkontensteuerung für Windows ändern möchten, ersetzen Sie den
|
||||||
|
Knoten "requestedExecutionLevel" wie folgt.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
Durch Angabe des Elements "requestedExecutionLevel" wird die Datei- und Registrierungsvirtualisierung deaktiviert.
|
||||||
|
Entfernen Sie dieses Element, wenn diese Virtualisierung aus Gründen der Abwärtskompatibilität
|
||||||
|
für die Anwendung erforderlich ist.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!-- Eine Liste der Windows-Versionen, unter denen diese Anwendung getestet
|
||||||
|
und für die sie entwickelt wurde. Wenn Sie die Auskommentierung der entsprechenden Elemente aufheben,
|
||||||
|
wird von Windows automatisch die kompatibelste Umgebung ausgewählt. -->
|
||||||
|
<!-- Windows Vista -->
|
||||||
|
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
|
||||||
|
<!-- Windows 7 -->
|
||||||
|
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
|
||||||
|
<!-- Windows 8 -->
|
||||||
|
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
|
||||||
|
<!-- Windows 8.1 -->
|
||||||
|
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
|
||||||
|
<!-- Windows 10 -->
|
||||||
|
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
|
||||||
|
</application>
|
||||||
|
</compatibility>
|
||||||
|
<!-- Gibt an, dass die Anwendung mit DPI-Werten kompatibel ist und von Windows nicht automatisch auf höhere
|
||||||
|
DPI-Werte skaliert wird. WPF-Anwendungen (Windows Presentation Foundation) sind automatisch mit DPI-Werten kompatibel und müssen sich nicht
|
||||||
|
anmelden. Für Windows Forms-Anwendungen für .NET Framework 4.6, die sich für diese Einstellung anmelden, muss
|
||||||
|
auch die Einstellung "'EnableWindowsFormsHighDpiAutoResizing" in der "app.config" auf "true" festgelegt werden. -->
|
||||||
|
<!--
|
||||||
|
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<windowsSettings>
|
||||||
|
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
|
||||||
|
</windowsSettings>
|
||||||
|
</application>
|
||||||
|
-->
|
||||||
|
<!-- Designs für allgemeine Windows-Steuerelemente und -Dialogfelder (Windows XP und höher) aktivieren -->
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity
|
||||||
|
type="win32"
|
||||||
|
name="Microsoft.Windows.Common-Controls"
|
||||||
|
version="6.0.0.0"
|
||||||
|
processorArchitecture="*"
|
||||||
|
publicKeyToken="6595b64144ccf1df"
|
||||||
|
language="*"
|
||||||
|
/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
</assembly>
|
||||||
596
Properties/generateReport.resx
Normal file
@@ -0,0 +1,596 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="pb_logo.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
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
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="pb_logo.InitialImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
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
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAABAAEATBkAAAEAIAAEHwAAFgAAACgAAABMAAAAMgAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAgICKQICAloCAgJ2AQEBgAEB
|
||||||
|
AXUCAgJgAgICMwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAlmEhFpZhITKWYSEulmEhLpZhIS6WYSExlmEhFAAAAAAAAAAAAAAAAAAA
|
||||||
|
AACWYSEFlmEhKpZhITGWYSEulmEhLZZhITGWYSEplmEhBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAlmEhJZZhITGWYSEulmEhLpZhITGWYSEtlmEhCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgsGBQVhBQQEuwUEBPIFBAT+BQQE/wQE
|
||||||
|
BP8EBAT/BQQE/wUEBPYFBATJBgUFdgUDAxYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJZhIXWWYSH3lmEh9pZhIfSWYSH1lmEh9pZhIW0AAAAAAAAAAAAA
|
||||||
|
AAAAAAAAlmEhJJZhIdiWYSH8lmEh9JZhIfSWYSH4lmEh1pZhIR4AAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAlmEhCZZhIcGWYSH4lmEh9ZZhIfWWYSH6lmEh6JZhIToAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkKCjAKCgq5CQoK/wkJCf8JCQn/CgoK/woK
|
||||||
|
Cv8KCgr/CgoK/woKCv8JCQn/CQkJ/wkKCv8KCQnNCgoKRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACWYSF5lmEh/5ZhIfyWYSH6lmEh/JZhIf+WYSFxAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAJZhISaWYSHilmEh/5ZhIfmWYSH4lmEh/5ZhIeKWYSEeAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAJZhIQiWYSHLlmEh/5ZhIfmWYSH5lmEh/5ZhIfKWYSE6AAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEEoODw/oDg8P/w8QEP8PEBD/DxAQ/w8Q
|
||||||
|
EP8PEBD/DxAQ/w8QEP8PEBD/DxAQ/w8QEP8PEBD/Dw8P/w4ODvYQEBBpFhYWBAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlmEhdJZhIf+WYSHvlmEh7pZhIe+WYSH9lmEhagAA
|
||||||
|
AAAAAAAAAAAAAAAAAACWYSEilmEh35ZhIf2WYSHtlmEh7JZhIfyWYSHdlmEhHQAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAACWYSEGlmEhxZZhIf2WYSHslmEh7ZZhIfuWYSHvlmEhNgAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQUFD4UFBTtExQU/xQVFf8VFRX/FRUV/xUV
|
||||||
|
Ff8VFRX/FRUV7xUVFeAVFRXpFRUV+hUVFf8VFRX/FRUV/xUVFf8UFBT/FBQU7RQUFCAAAAAAlmEhB5Zh
|
||||||
|
IQ2WYSELlmEhDJZhIQyWYSEMlmEhDJZhIQyWYSELlmEhBJZhIXmWYSH9lmEh65ZhIeqWYSHrlmEh/JZh
|
||||||
|
IW6WYSEElmEhC5VgIAEAAAAAlmEhIpZhId6WYSH4lmEh6ZZhIeeWYSH6lmEh3JZhIR0AAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAlmEhBpZhIcKWYSH5lmEh6JZhIemWYSH3lmEh75ZhITYAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABINDQ0ZGRnIGRkZ/xkZGf8ZGRn/GRkZ/xoa
|
||||||
|
Gv8ZGRnKGBgYZxgYGCMaGhoOGRkZGRgYGEcZGRmeGRkZ8BoaGv8aGhr/Ghoa9xkZGVgUFBQCAAAAAJZh
|
||||||
|
IbSWYSHXlmEhxJZhIciWYSHIlmEhyJZhIciWYSHIlmEhx5ZhIcKWYSHVlmEh55ZhIeWWYSHmlmEh5pZh
|
||||||
|
IeiWYSHTlmEhyZZhIcqWYSEmAAAAAJZhISKWYSHalmEh85ZhIeSWYSHilmEh9ZZhIdeWYSEbAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJZhIQaWYSG9lmEh9JZhIeOWYSHklmEh8pZhIeuWYSE0AAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdHR1tHh8f/x4fH/8eHx//Hh8f/x4f
|
||||||
|
H/8eHh6bISEhEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0dHT4eHx/XHh8f9h4eHl4AAAAAAAAAAAAA
|
||||||
|
AACWYSHzlmEh85ZhIemWYSHslmEh7JZhIeyWYSHslmEh7JZhIeyWYSHslmEh5pZhIeGWYSHilmEh4pZh
|
||||||
|
IeKWYSHhlmEh5pZhIfSWYSHwlmEhLgAAAACWYSEhlmEh1ZZhIe6WYSHflmEh3ZZhIfCWYSHSlmEhGwAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACWYSEGlmEhuZZhIe+WYSHelmEh35ZhIe2WYSHnlmEhNAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiIyMPIiMjyiIkJP8iJCT/IiQk/yIk
|
||||||
|
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
|
||||||
|
TcJNTk6BTk5PaUxOTXhMTE2rTE1N7UxNTf9MTU3/TE1N/0xMTe5NTE5KUlBTAgAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAACWYSE5lmEhtJZhIa6WYSGmlmEhqpZhIaqWYSGplmEhqJZhIaiWYSG2lmEhTAAA
|
||||||
|
AAAAAAAAAAAAAAAAAACWYSEZlmEhn5ZhIbKWYSGnlmEhppZhIbOWYSGdlmEhEwAAAACWYSE6lmEhxZZh
|
||||||
|
Ib+WYSG5lmEhuZZhIbiWYSG4lmEhq5ZhIaeWYSGplmEhqZZhIaeWYSGnlmEhtpZhIbqWYSG5lmEhupZh
|
||||||
|
IbqWYSG6lmEhugAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFVWVgVPT1CkUFBR/09QUP9PT1D/T09Q/09P
|
||||||
|
UP9PT1D/T09Q/09PUP9PT1D/T09Q/09PUP9PT1D/T09Q/09PUP9PT1D/T09Q3lBQUQ4AAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJZhIUyWYSG4lmEhp5ZhIaKWYSGllmEhpZZhIaSWYSGklmEhspZh
|
||||||
|
IUoAAAAAAAAAAAAAAAAAAAAAlmEhGJZhIZuWYSGslmEhopZhIaGWYSGulmEhmJZhIRIAAAAAlmEhM5Zh
|
||||||
|
IayWYSGnlmEhopZhIaOWYSGilmEho5ZhIaOWYSGklmEhpJZhIaSWYSGklmEhpJZhIaOWYSGilmEho5Zh
|
||||||
|
IaOWYSGjlmEho5ZhIaMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVlJXDFJSU5NSUlP/UlJT/1JS
|
||||||
|
U/9SUlP/UlJT/1JSU/9SUlP/UlJT/1JSU/9SUlP/UlJT/1JSU/9SUlP/UlJT4VBQUVhMTU0CAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlmEhY5ZhIbuWYSGglmEhnJZhIZ6WYSGdlmEhnZZh
|
||||||
|
IauWYSFHAAAAAAAAAAAAAAAAAAAAAJZhIReWYSGUlmEhpZZhIZuWYSGalmEhp5ZhIZOWYSESAAAAAJZh
|
||||||
|
ITGWYSGnlmEhoZZhIZyWYSGdlmEhnZZhIZ2WYSGdlmEhnZZhIZ2WYSGdlmEhnZZhIZ2WYSGdlmEhnZZh
|
||||||
|
IZ2WYSGdlmEhnZZhIZ2WYSGdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU1NUVVRU
|
||||||
|
Vc5UVFX/VFRV/1VVVv9UVFX/VFRV/1VVVv9UVFX/VVVW/1RUVf9UVFX0VFRVoFNTVCUAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJZhIQOWYSF3lmEhupZhIamWYSGolmEhqJZh
|
||||||
|
IaiWYSG2lmEhTAAAAAAAAAAAAAAAAAAAAACWYSEYlmEhoZZhIbWWYSGplmEhqJZhIbaWYSGflmEhFAAA
|
||||||
|
AACWYSE0lmEhtZZhIa+WYSGqlmEhq5ZhIauWYSGrlmEhq5ZhIauWYSGrlmEhq5ZhIauWYSGrlmEhq5Zh
|
||||||
|
IauWYSGrlmEhq5ZhIauWYSGrlmEhqwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AABVVVYQVVVWU1VVVpRWVlfCVlZX3lZWV+dWVlfiVlZX01ZWV7BVVVZ8VVVWN1lZWgMAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlmEhD5ZhIW+WYSGAlmEhepZh
|
||||||
|
IXmWYSF6lmEhg5ZhITYAAAAAAAAAAAAAAAAAAAAAlmEhDpZhIWKWYSFulmEhZ5ZhIWaWYSFulmEhYJZh
|
||||||
|
IQoAAAAAlmEhH5ZhIW6WYSFqlmEhZ5ZhIWiWYSFolmEhaJZhIWiWYSFolmEhaJZhIWiWYSFolmEhaJZh
|
||||||
|
IWiWYSFolmEhaJZhIWiWYSFolmEhaJZhIWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAV1dYDFhYWR1XV1giVlZXH1hYWRZfX2ACAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlmEhBZZh
|
||||||
|
IQWWYSEElmEhBJZhIQSVYCABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||||
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////////8AAA//f/////
|
||||||
|
////8AAA/wB//8H4H/A/8AAA/AAf/8H4H/A/8AAA+AAP/8H4H/A/8AAA8AAH/8H4H/A/8AAA4D4OAAA4
|
||||||
|
H/A/8AAA4H+eAAA4H/A/8AAAwP/+AAA4H/A/8AAAwf/+AAA4H/A/8AAAwf/+BAA4H/A/8AAAg//+B8H4
|
||||||
|
H/A/8AAAg///A8H4H/A/8AAAg///gcH4H/A/8AAAgf//wMH4H/A/8AAAwf//4MH4H/A/8AAAwf//4AH4
|
||||||
|
H/A/8AAAwP//8AH4H/A/8AAA4H8f+AH4H/Af8AAA4AwP/AH4HAAAcAAA8AAH/gH4HAAAcAAA+AAP/wH4
|
||||||
|
HAAAcAAA/gAf/4H4HAAAcAAA/4D//93/////8AAA////////////8AAA
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
BIN
Resources/32x32/Matrix42.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
Resources/C4IT_2016.ico
Normal file
|
After Width: | Height: | Size: 470 KiB |
BIN
Resources/CloseMenu.png
Normal file
|
After Width: | Height: | Size: 181 B |
BIN
Resources/Germany-Flag-icon.png
Normal file
|
After Width: | Height: | Size: 517 B |
BIN
Resources/Info_Light.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
Resources/Magnify.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
Resources/Matrix42.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
Resources/Matrix42_16.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Resources/NotifyByCP.png
Normal file
|
After Width: | Height: | Size: 192 B |
BIN
Resources/NotifyByOS.png
Normal file
|
After Width: | Height: | Size: 247 B |
BIN
Resources/NotifyMenu.png
Normal file
|
After Width: | Height: | Size: 229 B |
BIN
Resources/OpenDocument_16.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Resources/PresentationModeOff.png
Normal file
|
After Width: | Height: | Size: 305 B |
BIN
Resources/PresentationModeOn.png
Normal file
|
After Width: | Height: | Size: 408 B |
BIN
Resources/SettingsMenu.png
Normal file
|
After Width: | Height: | Size: 222 B |
BIN
Resources/StateOverlays/NewContent/OverlayNewContent_09.png
Normal file
|
After Width: | Height: | Size: 268 B |
BIN
Resources/StateOverlays/NewContent/OverlayNewContent_13.png
Normal file
|
After Width: | Height: | Size: 386 B |
BIN
Resources/StateOverlays/NewContent/OverlayNewContent_15.png
Normal file
|
After Width: | Height: | Size: 437 B |
BIN
Resources/StateOverlays/NewContent/OverlayNewContent_19.png
Normal file
|
After Width: | Height: | Size: 533 B |
BIN
Resources/StateOverlays/NewContent/OverlayNewContent_23.png
Normal file
|
After Width: | Height: | Size: 664 B |
BIN
Resources/StateOverlays/NewContent/OverlayNewContent_33.png
Normal file
|
After Width: | Height: | Size: 873 B |
BIN
Resources/StateOverlays/Offline/OverlayOffline_09.png
Normal file
|
After Width: | Height: | Size: 204 B |
BIN
Resources/StateOverlays/Offline/OverlayOffline_13.png
Normal file
|
After Width: | Height: | Size: 327 B |
BIN
Resources/StateOverlays/Offline/OverlayOffline_15.png
Normal file
|
After Width: | Height: | Size: 303 B |
BIN
Resources/StateOverlays/Offline/OverlayOffline_19.png
Normal file
|
After Width: | Height: | Size: 548 B |
BIN
Resources/StateOverlays/Offline/OverlayOffline_23.png
Normal file
|
After Width: | Height: | Size: 631 B |
BIN
Resources/StateOverlays/Offline/OverlayOffline_33.png
Normal file
|
After Width: | Height: | Size: 473 B |
BIN
Resources/StateOverlays/OverlayNewContentButton.png
Normal file
|
After Width: | Height: | Size: 288 B |
BIN
Resources/StateOverlays/OverlayOffline_15.png
Normal file
|
After Width: | Height: | Size: 303 B |
BIN
Resources/SystemLanguage.png
Normal file
|
After Width: | Height: | Size: 731 B |
BIN
Resources/United-Kingdom-Flag-icon.png
Normal file
|
After Width: | Height: | Size: 817 B |
BIN
Resources/appbar_input_question.png
Normal file
|
After Width: | Height: | Size: 511 B |
BIN
Resources/bg.png
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
Resources/consulting4it-header1.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
Resources/icons/C4IT_2016.ico
Normal file
|
After Width: | Height: | Size: 470 KiB |
BIN
Resources/icons/dark/appbar.book.perspective.png
Normal file
|
After Width: | Height: | Size: 744 B |
BIN
Resources/icons/dark/appbar.cart.png
Normal file
|
After Width: | Height: | Size: 885 B |
BIN
Resources/icons/dark/appbar.clear.reflect.horizontal.png
Normal file
|
After Width: | Height: | Size: 611 B |
BIN
Resources/icons/dark/appbar.clipboard.variant.text.png
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
Resources/icons/dark/appbar.folder.ellipsis.png
Normal file
|
After Width: | Height: | Size: 353 B |
BIN
Resources/icons/dark/appbar.home.gps.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Resources/icons/dark/appbar.information.png
Normal file
|
After Width: | Height: | Size: 467 B |
BIN
Resources/icons/dark/appbar.list.check.png
Normal file
|
After Width: | Height: | Size: 1022 B |
BIN
Resources/icons/dark/appbar.magnify.png
Normal file
|
After Width: | Height: | Size: 807 B |
BIN
Resources/icons/dark/appbar.monitor.png
Normal file
|
After Width: | Height: | Size: 378 B |
BIN
Resources/icons/dark/appbar.network.png
Normal file
|
After Width: | Height: | Size: 391 B |
BIN
Resources/icons/dark/appbar.network.server.connecting.png
Normal file
|
After Width: | Height: | Size: 454 B |
BIN
Resources/icons/dark/appbar.network.server.disconnect.png
Normal file
|
After Width: | Height: | Size: 690 B |