From ed7ed0c036800c8af7921ae84a1b7726facc2a2f Mon Sep 17 00:00:00 2001 From: Miguel Date: Wed, 1 May 2024 19:45:20 +0200 Subject: [PATCH] Add project files. --- App.xaml | 9 +++++++++ App.xaml.cs | 14 ++++++++++++++ AssemblyInfo.cs | 10 ++++++++++ CtrEditor.csproj | 11 +++++++++++ CtrEditor.sln | 25 +++++++++++++++++++++++++ MainWindow.xaml | 12 ++++++++++++ MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ 7 files changed, 105 insertions(+) create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 AssemblyInfo.cs create mode 100644 CtrEditor.csproj create mode 100644 CtrEditor.sln create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..f2e3323 --- /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..01f6265 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace CtrEditor +{ + /// + /// 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/CtrEditor.csproj b/CtrEditor.csproj new file mode 100644 index 0000000..81a7216 --- /dev/null +++ b/CtrEditor.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net7.0-windows + enable + enable + true + + + diff --git a/CtrEditor.sln b/CtrEditor.sln new file mode 100644 index 0000000..26884fd --- /dev/null +++ b/CtrEditor.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34723.18 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CtrEditor", "CtrEditor.csproj", "{A4DC96D9-6C55-42ED-8E29-DCBC8D7AB831}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A4DC96D9-6C55-42ED-8E29-DCBC8D7AB831}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A4DC96D9-6C55-42ED-8E29-DCBC8D7AB831}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A4DC96D9-6C55-42ED-8E29-DCBC8D7AB831}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A4DC96D9-6C55-42ED-8E29-DCBC8D7AB831}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2CD065B2-5724-4D88-8047-3B14D0500673} + EndGlobalSection +EndGlobal diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..2c31d0f --- /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..11bb453 --- /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 CtrEditor +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file