From b11b5a0676218c06cf302b03e48f39771016c29b Mon Sep 17 00:00:00 2001 From: pbt3h24akh Date: Wed, 21 Jan 2026 10:30:35 +0100 Subject: [PATCH] erste kommit --- SkyTeam/App.xaml | 9 +++++++++ SkyTeam/App.xaml.cs | 14 ++++++++++++++ SkyTeam/AssemblyInfo.cs | 10 ++++++++++ SkyTeam/MainWindow.xaml | 12 ++++++++++++ SkyTeam/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ SkyTeam/SkyTeam.csproj | 11 +++++++++++ SkyTeam/SkyTeam.sln | 25 +++++++++++++++++++++++++ 7 files changed, 105 insertions(+) create mode 100644 SkyTeam/App.xaml create mode 100644 SkyTeam/App.xaml.cs create mode 100644 SkyTeam/AssemblyInfo.cs create mode 100644 SkyTeam/MainWindow.xaml create mode 100644 SkyTeam/MainWindow.xaml.cs create mode 100644 SkyTeam/SkyTeam.csproj create mode 100644 SkyTeam/SkyTeam.sln diff --git a/SkyTeam/App.xaml b/SkyTeam/App.xaml new file mode 100644 index 0000000..a01b6c6 --- /dev/null +++ b/SkyTeam/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/SkyTeam/App.xaml.cs b/SkyTeam/App.xaml.cs new file mode 100644 index 0000000..e441a93 --- /dev/null +++ b/SkyTeam/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace SkyTeam +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/SkyTeam/AssemblyInfo.cs b/SkyTeam/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/SkyTeam/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/SkyTeam/MainWindow.xaml b/SkyTeam/MainWindow.xaml new file mode 100644 index 0000000..7525722 --- /dev/null +++ b/SkyTeam/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/SkyTeam/MainWindow.xaml.cs b/SkyTeam/MainWindow.xaml.cs new file mode 100644 index 0000000..e3e2155 --- /dev/null +++ b/SkyTeam/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace SkyTeam +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/SkyTeam/SkyTeam.csproj b/SkyTeam/SkyTeam.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/SkyTeam/SkyTeam.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/SkyTeam/SkyTeam.sln b/SkyTeam/SkyTeam.sln new file mode 100644 index 0000000..fcad1f5 --- /dev/null +++ b/SkyTeam/SkyTeam.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36408.4 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SkyTeam", "SkyTeam.csproj", "{104FB0CE-CA09-4F3C-A004-797E7BB7FFC6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {104FB0CE-CA09-4F3C-A004-797E7BB7FFC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {104FB0CE-CA09-4F3C-A004-797E7BB7FFC6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {104FB0CE-CA09-4F3C-A004-797E7BB7FFC6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {104FB0CE-CA09-4F3C-A004-797E7BB7FFC6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0446213E-4E0B-4839-9FEA-B70DCA5B70C8} + EndGlobalSection +EndGlobal