diff --git a/PacticeSolution/ListSample/App.config b/PacticeSolution/ListSample/App.config
new file mode 100644
index 0000000..8e15646
--- /dev/null
+++ b/PacticeSolution/ListSample/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListSample/App.xaml b/PacticeSolution/ListSample/App.xaml
new file mode 100644
index 0000000..83a0d1e
--- /dev/null
+++ b/PacticeSolution/ListSample/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/PacticeSolution/ListSample/App.xaml.cs b/PacticeSolution/ListSample/App.xaml.cs
new file mode 100644
index 0000000..ed54638
--- /dev/null
+++ b/PacticeSolution/ListSample/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 ListSample
+{
+ ///
+ /// App.xaml에 대한 상호 작용 논리
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/PacticeSolution/ListSample/ListSample.csproj b/PacticeSolution/ListSample/ListSample.csproj
new file mode 100644
index 0000000..2c18da2
--- /dev/null
+++ b/PacticeSolution/ListSample/ListSample.csproj
@@ -0,0 +1,112 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {4F711996-B62C-43B3-B084-8923001012D9}
+ WinExe
+ ListSample
+ ListSample
+ v4.5
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ True
+ True
+ Resources.resx
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListSample/MainWindow.xaml b/PacticeSolution/ListSample/MainWindow.xaml
new file mode 100644
index 0000000..f55b15a
--- /dev/null
+++ b/PacticeSolution/ListSample/MainWindow.xaml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PacticeSolution/ListSample/MainWindow.xaml.cs b/PacticeSolution/ListSample/MainWindow.xaml.cs
new file mode 100644
index 0000000..2d61975
--- /dev/null
+++ b/PacticeSolution/ListSample/MainWindow.xaml.cs
@@ -0,0 +1,42 @@
+using ListSample.Model;
+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 ListSample
+{
+ ///
+ /// MainWindow.xaml에 대한 상호 작용 논리
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void btnDelete_Click(object sender, RoutedEventArgs e)
+ {
+ Button button = sender as Button;
+ if (button == null)
+ return;
+
+ if (!(button.DataContext is Student))
+ return;
+
+ Student student = (Student)button.DataContext;
+ _studentList.Remove(student);
+ }
+ }
+}
diff --git a/PacticeSolution/ListSample/Model/Student.cs b/PacticeSolution/ListSample/Model/Student.cs
new file mode 100644
index 0000000..4d24c11
--- /dev/null
+++ b/PacticeSolution/ListSample/Model/Student.cs
@@ -0,0 +1,66 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ListSample.Model
+{
+ internal class Student : INotifyPropertyChanged
+ {
+ private string _name;
+ private int _age;
+ private string _phone;
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ public Student(string name, int age, string phone)
+ {
+ this.Name = name;
+ this.Age = age;
+ this.Phone = phone;
+ }
+
+ public Student() : this("Name", 20, "123-4567-8910")
+ {
+
+ }
+
+ public string Name
+ {
+ get { return _name; }
+ set
+ {
+ _name = value;
+ OnPropertyChanged(nameof(Name));
+ }
+ }
+
+ public int Age
+ {
+ get { return _age; }
+ set
+ {
+ _age = value;
+ OnPropertyChanged(nameof(Age));
+ }
+ }
+
+ public string Phone
+ {
+ get { return _phone; }
+ set
+ {
+ _phone = value;
+ OnPropertyChanged(nameof(Phone));
+ }
+ }
+
+ private void OnPropertyChanged(string propertyName)
+ {
+ if (this.PropertyChanged != null)
+ this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
+ }
+ }
+}
diff --git a/PacticeSolution/ListSample/Properties/AssemblyInfo.cs b/PacticeSolution/ListSample/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..7a24342
--- /dev/null
+++ b/PacticeSolution/ListSample/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해
+// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
+// 이러한 특성 값을 변경하세요.
+[assembly: AssemblyTitle("ListSample")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("ListSample")]
+[assembly: AssemblyCopyright("Copyright © 2023")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에
+// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
+// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요.
+[assembly: ComVisible(false)]
+
+//지역화 가능 애플리케이션 빌드를 시작하려면 다음을 설정하세요.
+//.csproj 파일에서 내에 CultureYouAreCodingWith를
+//설정하십시오. 예를 들어 소스 파일에서 영어(미국)를
+//사용하는 경우 를 en-US로 설정합니다. 그런 다음 아래
+//NeutralResourceLanguage 특성의 주석 처리를 제거합니다. 아래 줄의 "en-US"를 업데이트하여
+//프로젝트 파일의 UICulture 설정과 일치시킵니다.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //테마별 리소스 사전의 위치
+ //(페이지 또는 응용 프로그램 리소스 사진에
+ // 리소스가 없는 경우에 사용됨)
+ ResourceDictionaryLocation.SourceAssembly //제네릭 리소스 사전의 위치
+ //(페이지 또는 응용 프로그램 리소스 사진에
+ // 리소스가 없는 경우에 사용됨)
+)]
+
+
+// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
+//
+// 주 버전
+// 부 버전
+// 빌드 번호
+// 수정 버전
+//
+// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
+// 기본값으로 할 수 있습니다.
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/PacticeSolution/ListSample/Properties/Resources.Designer.cs b/PacticeSolution/ListSample/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..19ccde3
--- /dev/null
+++ b/PacticeSolution/ListSample/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// 이 코드는 도구를 사용하여 생성되었습니다.
+// 런타임 버전:4.0.30319.42000
+//
+// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
+// 이러한 변경 내용이 손실됩니다.
+//
+//------------------------------------------------------------------------------
+
+namespace ListSample.Properties
+{
+
+
+ ///
+ /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
+ ///
+ // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
+ // 클래스에서 자동으로 생성되었습니다.
+ // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여
+ // ResGen을 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ListSample.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
+ /// 재정의합니다.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/PacticeSolution/ListSample/Properties/Resources.resx b/PacticeSolution/ListSample/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/PacticeSolution/ListSample/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListSample/Properties/Settings.Designer.cs b/PacticeSolution/ListSample/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..52ca7a0
--- /dev/null
+++ b/PacticeSolution/ListSample/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace ListSample.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/PacticeSolution/ListSample/Properties/Settings.settings b/PacticeSolution/ListSample/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/PacticeSolution/ListSample/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListSample/Resources.Designer.cs b/PacticeSolution/ListSample/Resources.Designer.cs
new file mode 100644
index 0000000..5533a2e
--- /dev/null
+++ b/PacticeSolution/ListSample/Resources.Designer.cs
@@ -0,0 +1,73 @@
+//------------------------------------------------------------------------------
+//
+// 이 코드는 도구를 사용하여 생성되었습니다.
+// 런타임 버전:4.0.30319.42000
+//
+// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
+// 이러한 변경 내용이 손실됩니다.
+//
+//------------------------------------------------------------------------------
+
+namespace ListSample {
+ using System;
+
+
+ ///
+ /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
+ ///
+ // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
+ // 클래스에서 자동으로 생성되었습니다.
+ // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 ResGen을
+ // 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ListSample.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
+ /// 재정의합니다.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
+ ///
+ internal static System.Drawing.Bitmap Man {
+ get {
+ object obj = ResourceManager.GetObject("Man", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+ }
+}
diff --git a/PacticeSolution/ListSample/Resources.resx b/PacticeSolution/ListSample/Resources.resx
new file mode 100644
index 0000000..4fdb1b6
--- /dev/null
+++ b/PacticeSolution/ListSample/Resources.resx
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 1.3
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListSample/Resources/Man.png b/PacticeSolution/ListSample/Resources/Man.png
new file mode 100644
index 0000000..72aeecd
Binary files /dev/null and b/PacticeSolution/ListSample/Resources/Man.png differ
diff --git a/PacticeSolution/ListSample/ViewModel/StudentList.cs b/PacticeSolution/ListSample/ViewModel/StudentList.cs
new file mode 100644
index 0000000..f100836
--- /dev/null
+++ b/PacticeSolution/ListSample/ViewModel/StudentList.cs
@@ -0,0 +1,27 @@
+using ListSample.Model;
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ListSample.ViewModel
+{
+ internal class StudentList : ObservableCollection
+ {
+ public StudentList()
+ {
+ this.Add(new Student() { Name = "Charles", Age = 28, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Christina", Age = 38, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Joshua", Age = 24, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Jackson", Age = 26, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Paul", Age = 38, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Phinix", Age = 68, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Tom", Age = 58, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Brown", Age = 22, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Thomas", Age = 45, Phone = "010-1234-5678" });
+ this.Add(new Student() { Name = "Watson", Age = 34, Phone = "010-1234-5678" });
+ }
+ }
+}
diff --git a/PacticeSolution/PacticeSolution.sln b/PacticeSolution/PacticeSolution.sln
index 2fc5041..88081f0 100644
--- a/PacticeSolution/PacticeSolution.sln
+++ b/PacticeSolution/PacticeSolution.sln
@@ -55,6 +55,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProgressBarSample", "Progre
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingValidationRuleSample", "BindingValidationRuleSample\BindingValidationRuleSample.csproj", "{B328C31A-8C85-4A48-A12F-26E11C37A15C}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ListSample", "ListSample\ListSample.csproj", "{4F711996-B62C-43B3-B084-8923001012D9}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -165,6 +167,10 @@ Global
{B328C31A-8C85-4A48-A12F-26E11C37A15C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B328C31A-8C85-4A48-A12F-26E11C37A15C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B328C31A-8C85-4A48-A12F-26E11C37A15C}.Release|Any CPU.Build.0 = Release|Any CPU
+ {4F711996-B62C-43B3-B084-8923001012D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {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
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Resources/Man.png b/Resources/Man.png
new file mode 100644
index 0000000..72aeecd
Binary files /dev/null and b/Resources/Man.png differ