From b254416e3c04c5e49d0868e3c2d9ed67f3e62091 Mon Sep 17 00:00:00 2001 From: Domi Date: Sun, 28 Jan 2024 18:30:25 +0100 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OfficeConverter.sln | 25 + OfficeConverter/App.config | 6 + OfficeConverter/App.xaml | 14 + OfficeConverter/App.xaml.cs | 17 + OfficeConverter/MainWindow.xaml | 60 ++ OfficeConverter/MainWindow.xaml.cs | 707 +++++++++++++ OfficeConverter/OfficeConverter.csproj | 234 +++++ OfficeConverter/Properties/AssemblyInfo.cs | 55 + .../Properties/Resources.Designer.cs | 63 ++ OfficeConverter/Properties/Resources.resx | 117 +++ .../Properties/Settings.Designer.cs | 26 + OfficeConverter/Properties/Settings.settings | 7 + .../Themes/MetroDark/HowToApplyTheme.txt | 10 + .../MetroDark.MSControls.Core.Implicit.xaml | 964 ++++++++++++++++++ ...MetroDark.MSControls.Toolkit.Implicit.xaml | 934 +++++++++++++++++ .../Themes/MetroDark/Styles.Shared.xaml | 769 ++++++++++++++ .../Themes/MetroDark/Styles.WPF.xaml | 827 +++++++++++++++ .../Themes/MetroDark/Theme.Colors.xaml | 104 ++ OfficeConverter/packages.config | 5 + 19 files changed, 4944 insertions(+) create mode 100644 OfficeConverter.sln create mode 100644 OfficeConverter/App.config create mode 100644 OfficeConverter/App.xaml create mode 100644 OfficeConverter/App.xaml.cs create mode 100644 OfficeConverter/MainWindow.xaml create mode 100644 OfficeConverter/MainWindow.xaml.cs create mode 100644 OfficeConverter/OfficeConverter.csproj create mode 100644 OfficeConverter/Properties/AssemblyInfo.cs create mode 100644 OfficeConverter/Properties/Resources.Designer.cs create mode 100644 OfficeConverter/Properties/Resources.resx create mode 100644 OfficeConverter/Properties/Settings.Designer.cs create mode 100644 OfficeConverter/Properties/Settings.settings create mode 100644 OfficeConverter/Themes/MetroDark/HowToApplyTheme.txt create mode 100644 OfficeConverter/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml create mode 100644 OfficeConverter/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml create mode 100644 OfficeConverter/Themes/MetroDark/Styles.Shared.xaml create mode 100644 OfficeConverter/Themes/MetroDark/Styles.WPF.xaml create mode 100644 OfficeConverter/Themes/MetroDark/Theme.Colors.xaml create mode 100644 OfficeConverter/packages.config diff --git a/OfficeConverter.sln b/OfficeConverter.sln new file mode 100644 index 0000000..e4ff505 --- /dev/null +++ b/OfficeConverter.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34031.279 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OfficeConverter", "OfficeConverter\OfficeConverter.csproj", "{6E77662E-82C3-4913-8964-5A452B229F78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6E77662E-82C3-4913-8964-5A452B229F78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6E77662E-82C3-4913-8964-5A452B229F78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6E77662E-82C3-4913-8964-5A452B229F78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6E77662E-82C3-4913-8964-5A452B229F78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {165DBB8E-B8DE-46A5-B204-A50777D67F80} + EndGlobalSection +EndGlobal diff --git a/OfficeConverter/App.config b/OfficeConverter/App.config new file mode 100644 index 0000000..5ab1a35 --- /dev/null +++ b/OfficeConverter/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/OfficeConverter/App.xaml b/OfficeConverter/App.xaml new file mode 100644 index 0000000..3320980 --- /dev/null +++ b/OfficeConverter/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/OfficeConverter/App.xaml.cs b/OfficeConverter/App.xaml.cs new file mode 100644 index 0000000..255f980 --- /dev/null +++ b/OfficeConverter/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace OfficeConverter +{ + /// + /// Interaktionslogik für "App.xaml" + /// + public partial class App : Application + { + } +} diff --git a/OfficeConverter/MainWindow.xaml b/OfficeConverter/MainWindow.xaml new file mode 100644 index 0000000..0c76964 --- /dev/null +++ b/OfficeConverter/MainWindow.xaml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + +