From 2c05942d2ffb4e42233a7274e3711575e3d4e0d6 Mon Sep 17 00:00:00 2001 From: Aminekan Date: Wed, 9 Jul 2025 12:37:01 +0200 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.xaml | 9 +++++++++ App.xaml.cs | 14 ++++++++++++++ AssemblyInfo.cs | 10 ++++++++++ Data/Speicher.cs | 12 ++++++++++++ LkwVerwaltungApp.csproj | 11 +++++++++++ LkwVerwaltungApp.sln | 25 +++++++++++++++++++++++++ MainWindow.xaml | 12 ++++++++++++ MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ Models/Lkw.cs | 12 ++++++++++++ Services/lkwservices.cs | 13 +++++++++++++ 10 files changed, 142 insertions(+) create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 AssemblyInfo.cs create mode 100644 Data/Speicher.cs create mode 100644 LkwVerwaltungApp.csproj create mode 100644 LkwVerwaltungApp.sln create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs create mode 100644 Models/Lkw.cs create mode 100644 Services/lkwservices.cs diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..d0d125a --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..126e139 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace LkwVerwaltungApp +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/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/Data/Speicher.cs b/Data/Speicher.cs new file mode 100644 index 0000000..059920f --- /dev/null +++ b/Data/Speicher.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LkwVerwaltungApp.Data +{ + class Speicher + { + } +} diff --git a/LkwVerwaltungApp.csproj b/LkwVerwaltungApp.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/LkwVerwaltungApp.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/LkwVerwaltungApp.sln b/LkwVerwaltungApp.sln new file mode 100644 index 0000000..4654ae7 --- /dev/null +++ b/LkwVerwaltungApp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36203.30 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LkwVerwaltungApp", "LkwVerwaltungApp.csproj", "{ED0DA6D1-4563-48D4-8E87-29E5CF3F727E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {ED0DA6D1-4563-48D4-8E87-29E5CF3F727E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED0DA6D1-4563-48D4-8E87-29E5CF3F727E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED0DA6D1-4563-48D4-8E87-29E5CF3F727E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED0DA6D1-4563-48D4-8E87-29E5CF3F727E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5276C733-517C-4DE0-9103-CAE2C730C5CB} + EndGlobalSection +EndGlobal diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..4d67eb9 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs new file mode 100644 index 0000000..1880ff7 --- /dev/null +++ b/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 LkwVerwaltungApp +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/Models/Lkw.cs b/Models/Lkw.cs new file mode 100644 index 0000000..9658285 --- /dev/null +++ b/Models/Lkw.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LkwVerwaltungApp.Models +{ + class Lkw + { + } +} diff --git a/Services/lkwservices.cs b/Services/lkwservices.cs new file mode 100644 index 0000000..af5686d --- /dev/null +++ b/Services/lkwservices.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LkwVerwaltungApp.Services +{ + class lkwservices + { + + } +}