From 98027403a30f8f6959b731dc77f70c8f1bc43227 Mon Sep 17 00:00:00 2001 From: syneffort Date: Fri, 7 Jul 2023 10:01:10 +0900 Subject: [PATCH] event routing --- PacticeSolution/PacticeSolution.sln | 6 + PacticeSolution/RoutedEventSample/App.config | 6 + PacticeSolution/RoutedEventSample/App.xaml | 9 ++ PacticeSolution/RoutedEventSample/App.xaml.cs | 17 +++ .../RoutedEventSample/MainWindow.xaml | 43 +++++++ .../RoutedEventSample/MainWindow.xaml.cs | 63 ++++++++++ .../Properties/AssemblyInfo.cs | 55 ++++++++ .../Properties/Resources.Designer.cs | 71 +++++++++++ .../Properties/Resources.resx | 117 ++++++++++++++++++ .../Properties/Settings.Designer.cs | 30 +++++ .../Properties/Settings.settings | 7 ++ .../RoutedEventSample.csproj | 97 +++++++++++++++ 12 files changed, 521 insertions(+) create mode 100644 PacticeSolution/RoutedEventSample/App.config create mode 100644 PacticeSolution/RoutedEventSample/App.xaml create mode 100644 PacticeSolution/RoutedEventSample/App.xaml.cs create mode 100644 PacticeSolution/RoutedEventSample/MainWindow.xaml create mode 100644 PacticeSolution/RoutedEventSample/MainWindow.xaml.cs create mode 100644 PacticeSolution/RoutedEventSample/Properties/AssemblyInfo.cs create mode 100644 PacticeSolution/RoutedEventSample/Properties/Resources.Designer.cs create mode 100644 PacticeSolution/RoutedEventSample/Properties/Resources.resx create mode 100644 PacticeSolution/RoutedEventSample/Properties/Settings.Designer.cs create mode 100644 PacticeSolution/RoutedEventSample/Properties/Settings.settings create mode 100644 PacticeSolution/RoutedEventSample/RoutedEventSample.csproj diff --git a/PacticeSolution/PacticeSolution.sln b/PacticeSolution/PacticeSolution.sln index 04e0a0d..7996114 100644 --- a/PacticeSolution/PacticeSolution.sln +++ b/PacticeSolution/PacticeSolution.sln @@ -69,6 +69,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExternalProgramBatcher", "E EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExternalProgramBatcher_VFrameWork", "WpfApp1\ExternalProgramBatcher_VFrameWork.csproj", "{1664EE53-F26A-4590-AAC9-7276C0D97DE6}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEventSample", "RoutedEventSample\RoutedEventSample.csproj", "{937B32D0-92B5-4EEA-B643-0C417EC29631}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -207,6 +209,10 @@ Global {1664EE53-F26A-4590-AAC9-7276C0D97DE6}.Debug|Any CPU.Build.0 = Debug|Any CPU {1664EE53-F26A-4590-AAC9-7276C0D97DE6}.Release|Any CPU.ActiveCfg = Release|Any CPU {1664EE53-F26A-4590-AAC9-7276C0D97DE6}.Release|Any CPU.Build.0 = Release|Any CPU + {937B32D0-92B5-4EEA-B643-0C417EC29631}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {937B32D0-92B5-4EEA-B643-0C417EC29631}.Debug|Any CPU.Build.0 = Debug|Any CPU + {937B32D0-92B5-4EEA-B643-0C417EC29631}.Release|Any CPU.ActiveCfg = Release|Any CPU + {937B32D0-92B5-4EEA-B643-0C417EC29631}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PacticeSolution/RoutedEventSample/App.config b/PacticeSolution/RoutedEventSample/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/PacticeSolution/RoutedEventSample/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/PacticeSolution/RoutedEventSample/App.xaml b/PacticeSolution/RoutedEventSample/App.xaml new file mode 100644 index 0000000..013c9e1 --- /dev/null +++ b/PacticeSolution/RoutedEventSample/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/RoutedEventSample/App.xaml.cs b/PacticeSolution/RoutedEventSample/App.xaml.cs new file mode 100644 index 0000000..f296e35 --- /dev/null +++ b/PacticeSolution/RoutedEventSample/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 RoutedEventSample +{ + /// + /// App.xaml에 대한 상호 작용 논리 + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/RoutedEventSample/MainWindow.xaml b/PacticeSolution/RoutedEventSample/MainWindow.xaml new file mode 100644 index 0000000..98f3592 --- /dev/null +++ b/PacticeSolution/RoutedEventSample/MainWindow.xaml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + +