From 101a3847a253664611ec88ff4f808c88283b59a0 Mon Sep 17 00:00:00 2001 From: syneffort Date: Fri, 7 Jul 2023 09:33:32 +0900 Subject: [PATCH] dependecny --- .../DependencyPropertySample2/MainWindow.xaml | 2 +- .../ExternalProgramBatcher/App.xaml | 9 ++ .../ExternalProgramBatcher/App.xaml.cs | 17 +++ .../ExternalProgramBatcher/AssemblyInfo.cs | 10 ++ .../ExternalProgramBatcher.csproj | 10 ++ .../ExternalProgramBatcher/MainWindow.xaml | 17 +++ .../ExternalProgramBatcher/MainWindow.xaml.cs | 98 +++++++++++++++ PacticeSolution/PacticeSolution.sln | 12 ++ PacticeSolution/WpfApp1/App.config | 6 + PacticeSolution/WpfApp1/App.xaml | 9 ++ PacticeSolution/WpfApp1/App.xaml.cs | 16 +++ PacticeSolution/WpfApp1/MainWindow.xaml | 17 +++ PacticeSolution/WpfApp1/MainWindow.xaml.cs | 90 ++++++++++++++ .../WpfApp1/Properties/AssemblyInfo.cs | 55 ++++++++ .../WpfApp1/Properties/Resources.Designer.cs | 63 ++++++++++ .../WpfApp1/Properties/Resources.resx | 117 ++++++++++++++++++ .../WpfApp1/Properties/Settings.Designer.cs | 26 ++++ .../WpfApp1/Properties/Settings.settings | 7 ++ PacticeSolution/WpfApp1/WpfApp1.csproj | 98 +++++++++++++++ 19 files changed, 678 insertions(+), 1 deletion(-) create mode 100644 PacticeSolution/ExternalProgramBatcher/App.xaml create mode 100644 PacticeSolution/ExternalProgramBatcher/App.xaml.cs create mode 100644 PacticeSolution/ExternalProgramBatcher/AssemblyInfo.cs create mode 100644 PacticeSolution/ExternalProgramBatcher/ExternalProgramBatcher.csproj create mode 100644 PacticeSolution/ExternalProgramBatcher/MainWindow.xaml create mode 100644 PacticeSolution/ExternalProgramBatcher/MainWindow.xaml.cs create mode 100644 PacticeSolution/WpfApp1/App.config create mode 100644 PacticeSolution/WpfApp1/App.xaml create mode 100644 PacticeSolution/WpfApp1/App.xaml.cs create mode 100644 PacticeSolution/WpfApp1/MainWindow.xaml create mode 100644 PacticeSolution/WpfApp1/MainWindow.xaml.cs create mode 100644 PacticeSolution/WpfApp1/Properties/AssemblyInfo.cs create mode 100644 PacticeSolution/WpfApp1/Properties/Resources.Designer.cs create mode 100644 PacticeSolution/WpfApp1/Properties/Resources.resx create mode 100644 PacticeSolution/WpfApp1/Properties/Settings.Designer.cs create mode 100644 PacticeSolution/WpfApp1/Properties/Settings.settings create mode 100644 PacticeSolution/WpfApp1/WpfApp1.csproj diff --git a/PacticeSolution/DependencyPropertySample2/MainWindow.xaml b/PacticeSolution/DependencyPropertySample2/MainWindow.xaml index 3f11ef7..88b58c6 100644 --- a/PacticeSolution/DependencyPropertySample2/MainWindow.xaml +++ b/PacticeSolution/DependencyPropertySample2/MainWindow.xaml @@ -15,6 +15,6 @@ - + diff --git a/PacticeSolution/ExternalProgramBatcher/App.xaml b/PacticeSolution/ExternalProgramBatcher/App.xaml new file mode 100644 index 0000000..de6bc59 --- /dev/null +++ b/PacticeSolution/ExternalProgramBatcher/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/ExternalProgramBatcher/App.xaml.cs b/PacticeSolution/ExternalProgramBatcher/App.xaml.cs new file mode 100644 index 0000000..df9586b --- /dev/null +++ b/PacticeSolution/ExternalProgramBatcher/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 ExternalProgramBatcher +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/ExternalProgramBatcher/AssemblyInfo.cs b/PacticeSolution/ExternalProgramBatcher/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PacticeSolution/ExternalProgramBatcher/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/PacticeSolution/ExternalProgramBatcher/ExternalProgramBatcher.csproj b/PacticeSolution/ExternalProgramBatcher/ExternalProgramBatcher.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/PacticeSolution/ExternalProgramBatcher/ExternalProgramBatcher.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/PacticeSolution/ExternalProgramBatcher/MainWindow.xaml b/PacticeSolution/ExternalProgramBatcher/MainWindow.xaml new file mode 100644 index 0000000..44f8ecc --- /dev/null +++ b/PacticeSolution/ExternalProgramBatcher/MainWindow.xaml @@ -0,0 +1,17 @@ + + + + +