From f66c06f2ffa77a3c872f7b2bf13528a3a1c15a10 Mon Sep 17 00:00:00 2001 From: syneffort Date: Tue, 4 Jul 2023 18:09:09 +0900 Subject: [PATCH] property trigger --- PacticeSolution/ListSample/MainWindow.xaml | 4 +- PacticeSolution/PacticeSolution.sln | 6 + .../PropertyTriggerSample/App.config | 6 + .../PropertyTriggerSample/App.xaml | 9 ++ .../PropertyTriggerSample/App.xaml.cs | 17 +++ .../PropertyTriggerSample/MainWindow.xaml | 54 ++++++++ .../PropertyTriggerSample/MainWindow.xaml.cs | 28 +++++ .../Properties/AssemblyInfo.cs | 55 ++++++++ .../Properties/Resources.Designer.cs | 71 +++++++++++ .../Properties/Resources.resx | 117 ++++++++++++++++++ .../Properties/Settings.Designer.cs | 30 +++++ .../Properties/Settings.settings | 7 ++ .../PropertyTriggerSample.csproj | 97 +++++++++++++++ 13 files changed, 499 insertions(+), 2 deletions(-) create mode 100644 PacticeSolution/PropertyTriggerSample/App.config create mode 100644 PacticeSolution/PropertyTriggerSample/App.xaml create mode 100644 PacticeSolution/PropertyTriggerSample/App.xaml.cs create mode 100644 PacticeSolution/PropertyTriggerSample/MainWindow.xaml create mode 100644 PacticeSolution/PropertyTriggerSample/MainWindow.xaml.cs create mode 100644 PacticeSolution/PropertyTriggerSample/Properties/AssemblyInfo.cs create mode 100644 PacticeSolution/PropertyTriggerSample/Properties/Resources.Designer.cs create mode 100644 PacticeSolution/PropertyTriggerSample/Properties/Resources.resx create mode 100644 PacticeSolution/PropertyTriggerSample/Properties/Settings.Designer.cs create mode 100644 PacticeSolution/PropertyTriggerSample/Properties/Settings.settings create mode 100644 PacticeSolution/PropertyTriggerSample/PropertyTriggerSample.csproj diff --git a/PacticeSolution/ListSample/MainWindow.xaml b/PacticeSolution/ListSample/MainWindow.xaml index 938b650..07ed6e7 100644 --- a/PacticeSolution/ListSample/MainWindow.xaml +++ b/PacticeSolution/ListSample/MainWindow.xaml @@ -66,8 +66,8 @@ - - (Person) + + (Person) diff --git a/PacticeSolution/PacticeSolution.sln b/PacticeSolution/PacticeSolution.sln index 88081f0..bc43702 100644 --- a/PacticeSolution/PacticeSolution.sln +++ b/PacticeSolution/PacticeSolution.sln @@ -57,6 +57,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingValidationRuleSample EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ListSample", "ListSample\ListSample.csproj", "{4F711996-B62C-43B3-B084-8923001012D9}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PropertyTriggerSample", "PropertyTriggerSample\PropertyTriggerSample.csproj", "{480DC5E9-1E18-4176-B964-FD2024C5F1C1}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -171,6 +173,10 @@ Global {4F711996-B62C-43B3-B084-8923001012D9}.Debug|Any CPU.Build.0 = Debug|Any CPU {4F711996-B62C-43B3-B084-8923001012D9}.Release|Any CPU.ActiveCfg = Release|Any CPU {4F711996-B62C-43B3-B084-8923001012D9}.Release|Any CPU.Build.0 = Release|Any CPU + {480DC5E9-1E18-4176-B964-FD2024C5F1C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {480DC5E9-1E18-4176-B964-FD2024C5F1C1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {480DC5E9-1E18-4176-B964-FD2024C5F1C1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {480DC5E9-1E18-4176-B964-FD2024C5F1C1}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PacticeSolution/PropertyTriggerSample/App.config b/PacticeSolution/PropertyTriggerSample/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/PacticeSolution/PropertyTriggerSample/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/PacticeSolution/PropertyTriggerSample/App.xaml b/PacticeSolution/PropertyTriggerSample/App.xaml new file mode 100644 index 0000000..67eb13c --- /dev/null +++ b/PacticeSolution/PropertyTriggerSample/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/PropertyTriggerSample/App.xaml.cs b/PacticeSolution/PropertyTriggerSample/App.xaml.cs new file mode 100644 index 0000000..bd03545 --- /dev/null +++ b/PacticeSolution/PropertyTriggerSample/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 PropertyTriggerSample +{ + /// + /// App.xaml에 대한 상호 작용 논리 + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/PropertyTriggerSample/MainWindow.xaml b/PacticeSolution/PropertyTriggerSample/MainWindow.xaml new file mode 100644 index 0000000..b58f3f6 --- /dev/null +++ b/PacticeSolution/PropertyTriggerSample/MainWindow.xaml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + +