diff --git a/PacticeSolution/PacticeSolution.sln b/PacticeSolution/PacticeSolution.sln index 7996114..216b3a9 100644 --- a/PacticeSolution/PacticeSolution.sln +++ b/PacticeSolution/PacticeSolution.sln @@ -71,6 +71,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExternalProgramBatcher_VFra EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEventSample", "RoutedEventSample\RoutedEventSample.csproj", "{937B32D0-92B5-4EEA-B643-0C417EC29631}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleDataBinding", "SimpleDataBinding\SimpleDataBinding.csproj", "{ED6E5A86-ABD9-43E3-9D7A-8FA4E789F72C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -213,6 +215,10 @@ Global {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 + {ED6E5A86-ABD9-43E3-9D7A-8FA4E789F72C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED6E5A86-ABD9-43E3-9D7A-8FA4E789F72C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED6E5A86-ABD9-43E3-9D7A-8FA4E789F72C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED6E5A86-ABD9-43E3-9D7A-8FA4E789F72C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PacticeSolution/SimpleDataBinding/App.config b/PacticeSolution/SimpleDataBinding/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/PacticeSolution/SimpleDataBinding/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/PacticeSolution/SimpleDataBinding/App.xaml b/PacticeSolution/SimpleDataBinding/App.xaml new file mode 100644 index 0000000..e693a40 --- /dev/null +++ b/PacticeSolution/SimpleDataBinding/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/SimpleDataBinding/App.xaml.cs b/PacticeSolution/SimpleDataBinding/App.xaml.cs new file mode 100644 index 0000000..978e92b --- /dev/null +++ b/PacticeSolution/SimpleDataBinding/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 SimpleDataBinding +{ + /// + /// App.xaml에 대한 상호 작용 논리 + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/SimpleDataBinding/Cities.cs b/PacticeSolution/SimpleDataBinding/Cities.cs new file mode 100644 index 0000000..f0322d8 --- /dev/null +++ b/PacticeSolution/SimpleDataBinding/Cities.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SimpleDataBinding +{ + internal class Cities + { + public bool Seoul { get; set; } + public bool Jejoo { get; set; } + public bool Incheon { get; set; } + } +} diff --git a/PacticeSolution/SimpleDataBinding/MainWindow.xaml b/PacticeSolution/SimpleDataBinding/MainWindow.xaml new file mode 100644 index 0000000..f1e0548 --- /dev/null +++ b/PacticeSolution/SimpleDataBinding/MainWindow.xaml @@ -0,0 +1,23 @@ + + + + + + +