From ad447d109f73d8b5d7cc19c7fcd26a34ce7f004d Mon Sep 17 00:00:00 2001 From: MartinGamesCZ Date: Tue, 10 Feb 2026 14:19:45 +0100 Subject: [PATCH] =?UTF-8?q?P=C5=99idejte=20soubory=20projektu.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dealer.sln | 25 +++++++++++++++++++++++++ dealer/App.xaml | 9 +++++++++ dealer/App.xaml.cs | 14 ++++++++++++++ dealer/AssemblyInfo.cs | 10 ++++++++++ dealer/MainWindow.xaml | 12 ++++++++++++ dealer/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ dealer/dealer.csproj | 11 +++++++++++ 7 files changed, 105 insertions(+) create mode 100644 dealer.sln create mode 100644 dealer/App.xaml create mode 100644 dealer/App.xaml.cs create mode 100644 dealer/AssemblyInfo.cs create mode 100644 dealer/MainWindow.xaml create mode 100644 dealer/MainWindow.xaml.cs create mode 100644 dealer/dealer.csproj diff --git a/dealer.sln b/dealer.sln new file mode 100644 index 0000000..0b70d28 --- /dev/null +++ b/dealer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36915.13 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dealer", "dealer\dealer.csproj", "{2B4B9E23-B28D-4D9D-A56C-A78DBEDC12C6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2B4B9E23-B28D-4D9D-A56C-A78DBEDC12C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2B4B9E23-B28D-4D9D-A56C-A78DBEDC12C6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2B4B9E23-B28D-4D9D-A56C-A78DBEDC12C6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2B4B9E23-B28D-4D9D-A56C-A78DBEDC12C6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4BFC47E7-F8E6-4292-BEB4-662EA14BCE59} + EndGlobalSection +EndGlobal diff --git a/dealer/App.xaml b/dealer/App.xaml new file mode 100644 index 0000000..3c9ecaf --- /dev/null +++ b/dealer/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/dealer/App.xaml.cs b/dealer/App.xaml.cs new file mode 100644 index 0000000..28e6a80 --- /dev/null +++ b/dealer/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace dealer +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/dealer/AssemblyInfo.cs b/dealer/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/dealer/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/dealer/MainWindow.xaml b/dealer/MainWindow.xaml new file mode 100644 index 0000000..d38fe50 --- /dev/null +++ b/dealer/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/dealer/MainWindow.xaml.cs b/dealer/MainWindow.xaml.cs new file mode 100644 index 0000000..c9b7cea --- /dev/null +++ b/dealer/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 dealer +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/dealer/dealer.csproj b/dealer/dealer.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/dealer/dealer.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + +