From 1291620b8a289ea1316799c6b433a410c239d111 Mon Sep 17 00:00:00 2001 From: syneffort Date: Tue, 14 Nov 2023 15:22:46 +0900 Subject: [PATCH] repo init --- LC_Tutorial/LC_Tutorial.sln | 25 +++++++++++++++++++ LC_Tutorial/LC_Tutorial/App.xaml | 9 +++++++ LC_Tutorial/LC_Tutorial/App.xaml.cs | 17 +++++++++++++ LC_Tutorial/LC_Tutorial/AssemblyInfo.cs | 10 ++++++++ LC_Tutorial/LC_Tutorial/LC_Tutorial.csproj | 10 ++++++++ LC_Tutorial/LC_Tutorial/MainWindow.xaml | 12 ++++++++++ LC_Tutorial/LC_Tutorial/MainWindow.xaml.cs | 28 ++++++++++++++++++++++ 7 files changed, 111 insertions(+) create mode 100644 LC_Tutorial/LC_Tutorial.sln create mode 100644 LC_Tutorial/LC_Tutorial/App.xaml create mode 100644 LC_Tutorial/LC_Tutorial/App.xaml.cs create mode 100644 LC_Tutorial/LC_Tutorial/AssemblyInfo.cs create mode 100644 LC_Tutorial/LC_Tutorial/LC_Tutorial.csproj create mode 100644 LC_Tutorial/LC_Tutorial/MainWindow.xaml create mode 100644 LC_Tutorial/LC_Tutorial/MainWindow.xaml.cs diff --git a/LC_Tutorial/LC_Tutorial.sln b/LC_Tutorial/LC_Tutorial.sln new file mode 100644 index 0000000..2ab0fe5 --- /dev/null +++ b/LC_Tutorial/LC_Tutorial.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34009.444 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LC_Tutorial", "LC_Tutorial\LC_Tutorial.csproj", "{2A43D9AF-67E5-4494-8098-B1EAD8C158FC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2A43D9AF-67E5-4494-8098-B1EAD8C158FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2A43D9AF-67E5-4494-8098-B1EAD8C158FC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2A43D9AF-67E5-4494-8098-B1EAD8C158FC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2A43D9AF-67E5-4494-8098-B1EAD8C158FC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9F4C48D5-A3E2-4B2C-A3A2-834DBB6E80E8} + EndGlobalSection +EndGlobal diff --git a/LC_Tutorial/LC_Tutorial/App.xaml b/LC_Tutorial/LC_Tutorial/App.xaml new file mode 100644 index 0000000..099733f --- /dev/null +++ b/LC_Tutorial/LC_Tutorial/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/LC_Tutorial/LC_Tutorial/App.xaml.cs b/LC_Tutorial/LC_Tutorial/App.xaml.cs new file mode 100644 index 0000000..27bc649 --- /dev/null +++ b/LC_Tutorial/LC_Tutorial/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 LC_Tutorial +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/LC_Tutorial/LC_Tutorial/AssemblyInfo.cs b/LC_Tutorial/LC_Tutorial/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/LC_Tutorial/LC_Tutorial/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/LC_Tutorial/LC_Tutorial/LC_Tutorial.csproj b/LC_Tutorial/LC_Tutorial/LC_Tutorial.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/LC_Tutorial/LC_Tutorial/LC_Tutorial.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/LC_Tutorial/LC_Tutorial/MainWindow.xaml b/LC_Tutorial/LC_Tutorial/MainWindow.xaml new file mode 100644 index 0000000..7cf3ebf --- /dev/null +++ b/LC_Tutorial/LC_Tutorial/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/LC_Tutorial/LC_Tutorial/MainWindow.xaml.cs b/LC_Tutorial/LC_Tutorial/MainWindow.xaml.cs new file mode 100644 index 0000000..02a4ed5 --- /dev/null +++ b/LC_Tutorial/LC_Tutorial/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +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 LC_Tutorial +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +}