diff --git a/PacticeSolution/ListBoxSortFilterSearch/App.config b/PacticeSolution/ListBoxSortFilterSearch/App.config
new file mode 100644
index 0000000..8e15646
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListBoxSortFilterSearch/App.xaml b/PacticeSolution/ListBoxSortFilterSearch/App.xaml
new file mode 100644
index 0000000..9cc04b1
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/PacticeSolution/ListBoxSortFilterSearch/App.xaml.cs b/PacticeSolution/ListBoxSortFilterSearch/App.xaml.cs
new file mode 100644
index 0000000..b8d3d74
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/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 ListBoxSortFilterSearch
+{
+ ///
+ /// App.xaml에 대한 상호 작용 논리
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/PacticeSolution/ListBoxSortFilterSearch/ListBoxSortFilterSearch.csproj b/PacticeSolution/ListBoxSortFilterSearch/ListBoxSortFilterSearch.csproj
new file mode 100644
index 0000000..0415e7f
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/ListBoxSortFilterSearch.csproj
@@ -0,0 +1,100 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {31C1503F-1735-4A7E-A5AC-2935E0076160}
+ WinExe
+ ListBoxSortFilterSearch
+ ListBoxSortFilterSearch
+ 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
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListBoxSortFilterSearch/MainWindow.xaml b/PacticeSolution/ListBoxSortFilterSearch/MainWindow.xaml
new file mode 100644
index 0000000..a2933a3
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/MainWindow.xaml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PacticeSolution/ListBoxSortFilterSearch/MainWindow.xaml.cs b/PacticeSolution/ListBoxSortFilterSearch/MainWindow.xaml.cs
new file mode 100644
index 0000000..bfd9b3e
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/MainWindow.xaml.cs
@@ -0,0 +1,97 @@
+using ListBoxSortFilterSearch.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 ListBoxSortFilterSearch
+{
+ ///
+ /// MainWindow.xaml에 대한 상호 작용 논리
+ ///
+ public partial class MainWindow : Window
+ {
+ private ListCollectionView _myCollectionView;
+ private Emp _emp;
+
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void spMain_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
+ {
+ _myCollectionView = CollectionViewSource.GetDefaultView(spMain.DataContext) as ListCollectionView;
+ }
+
+ private void ListBoxHeader_OnClick(object sender, RoutedEventArgs e)
+ {
+ Button button = sender as Button;
+ _myCollectionView.SortDescriptions.Clear();
+
+ switch(button.Name)
+ {
+ case "btnEmpNo":
+ _myCollectionView.SortDescriptions.Add(new System.ComponentModel.SortDescription("EmpNo", System.ComponentModel.ListSortDirection.Ascending));
+ break;
+ case "btnName":
+ _myCollectionView.SortDescriptions.Add(new System.ComponentModel.SortDescription("Name", System.ComponentModel.ListSortDirection.Ascending));
+ break;
+ case "btnJob":
+ _myCollectionView.SortDescriptions.Add(new System.ComponentModel.SortDescription("Job", System.ComponentModel.ListSortDirection.Ascending));
+ break;
+ }
+ }
+
+ private void Move_OnClick(object sender, RoutedEventArgs e)
+ {
+ Button button = sender as Button;
+ _myCollectionView.SortDescriptions.Clear();
+
+ switch (button.Name)
+ {
+ case "btnPrev":
+ if (_myCollectionView.MoveCurrentToPrevious())
+ _emp = _myCollectionView.CurrentAddItem as Emp;
+ else
+ _myCollectionView.MoveCurrentToFirst();
+ break;
+ case "btnNext":
+ if (_myCollectionView.MoveCurrentToNext())
+ _emp = _myCollectionView.CurrentAddItem as Emp;
+ else
+ _myCollectionView.MoveCurrentToLast();
+ break;
+ }
+ }
+
+ private void btnManagerOnly_Click(object sender, RoutedEventArgs e)
+ {
+ switch (_myCollectionView.Filter)
+ {
+ case null:
+ _myCollectionView.Filter = IsManager;
+ break;
+ default:
+ _myCollectionView.Filter = null;
+ break;
+ }
+ }
+
+ private bool IsManager(object obj)
+ {
+ Emp e = obj as Emp;
+ return e?.Job == "Manager";
+ }
+ }
+}
diff --git a/PacticeSolution/ListBoxSortFilterSearch/Model/Emp.cs b/PacticeSolution/ListBoxSortFilterSearch/Model/Emp.cs
new file mode 100644
index 0000000..5804f45
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/Model/Emp.cs
@@ -0,0 +1,57 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Linq;
+using System.Runtime.CompilerServices;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ListBoxSortFilterSearch.Model
+{
+ internal class Emp : INotifyPropertyChanged
+ {
+ private int _empNo;
+ private string _name;
+ private string _job;
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ public int EmpNo
+ {
+ get { return _empNo; }
+ set
+ {
+ _empNo = value;
+ OnPropertyChanged(nameof(EmpNo));
+ }
+ }
+
+ public string Name
+ {
+ get { return _name; }
+ set
+ {
+ _name = value;
+ OnPropertyChanged(nameof(Name));
+ }
+ }
+
+ public string Job
+ {
+ get { return _job; }
+ set
+ {
+ _job = value;
+ OnPropertyChanged(nameof(Job));
+ }
+ }
+
+ private void OnPropertyChanged([CallerMemberName] string propertyName = null)
+ {
+ if (this.PropertyChanged == null)
+ return;
+
+ this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
+ }
+ }
+}
diff --git a/PacticeSolution/ListBoxSortFilterSearch/Properties/AssemblyInfo.cs b/PacticeSolution/ListBoxSortFilterSearch/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..5f99b46
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/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("ListBoxSortFilterSearch")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("ListBoxSortFilterSearch")]
+[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/ListBoxSortFilterSearch/Properties/Resources.Designer.cs b/PacticeSolution/ListBoxSortFilterSearch/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..9e1d60a
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// 이 코드는 도구를 사용하여 생성되었습니다.
+// 런타임 버전:4.0.30319.42000
+//
+// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
+// 이러한 변경 내용이 손실됩니다.
+//
+//------------------------------------------------------------------------------
+
+namespace ListBoxSortFilterSearch.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("ListBoxSortFilterSearch.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/ListBoxSortFilterSearch/Properties/Resources.resx b/PacticeSolution/ListBoxSortFilterSearch/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/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/ListBoxSortFilterSearch/Properties/Settings.Designer.cs b/PacticeSolution/ListBoxSortFilterSearch/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..a0daf6d
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/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 ListBoxSortFilterSearch.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/ListBoxSortFilterSearch/Properties/Settings.settings b/PacticeSolution/ListBoxSortFilterSearch/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PacticeSolution/ListBoxSortFilterSearch/ViewModel/EmpViewModel.cs b/PacticeSolution/ListBoxSortFilterSearch/ViewModel/EmpViewModel.cs
new file mode 100644
index 0000000..e41274c
--- /dev/null
+++ b/PacticeSolution/ListBoxSortFilterSearch/ViewModel/EmpViewModel.cs
@@ -0,0 +1,23 @@
+using ListBoxSortFilterSearch.Model;
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ListBoxSortFilterSearch.ViewModel
+{
+ internal class EmpViewModel : ObservableCollection
+ {
+ public EmpViewModel()
+ {
+ this.Add(new Emp() { EmpNo = 1, Name = "Philip", Job = "Sales" });
+ this.Add(new Emp() { EmpNo = 2, Name = "Tony", Job = "Clerk" });
+ this.Add(new Emp() { EmpNo = 3, Name = "Jack", Job = "Clerk" });
+ this.Add(new Emp() { EmpNo = 4, Name = "Bowman", Job = "Sales" });
+ this.Add(new Emp() { EmpNo = 5, Name = "Smith", Job = "Guard" });
+ this.Add(new Emp() { EmpNo = 6, Name = "Michel", Job = "Manager" });
+ }
+ }
+}
diff --git a/PacticeSolution/PacticeSolution.sln b/PacticeSolution/PacticeSolution.sln
index ca3f538..f7ec801 100644
--- a/PacticeSolution/PacticeSolution.sln
+++ b/PacticeSolution/PacticeSolution.sln
@@ -79,6 +79,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandPatternSample", "Com
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ValueConverterSample", "ValueConverterSample\ValueConverterSample.csproj", "{5B486E58-3E1A-4047-8C6B-785818913A79}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ListBoxSortFilterSearch", "ListBoxSortFilterSearch\ListBoxSortFilterSearch.csproj", "{31C1503F-1735-4A7E-A5AC-2935E0076160}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -237,6 +239,10 @@ Global
{5B486E58-3E1A-4047-8C6B-785818913A79}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5B486E58-3E1A-4047-8C6B-785818913A79}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5B486E58-3E1A-4047-8C6B-785818913A79}.Release|Any CPU.Build.0 = Release|Any CPU
+ {31C1503F-1735-4A7E-A5AC-2935E0076160}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {31C1503F-1735-4A7E-A5AC-2935E0076160}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {31C1503F-1735-4A7E-A5AC-2935E0076160}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {31C1503F-1735-4A7E-A5AC-2935E0076160}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE