From 931cf161b4439f8347ca0757b5e04b242a2ef4c6 Mon Sep 17 00:00:00 2001 From: syneffort Date: Tue, 4 Jul 2023 17:32:02 +0900 Subject: [PATCH] listbox sample --- PacticeSolution/ListSample/App.config | 6 + PacticeSolution/ListSample/App.xaml | 9 ++ PacticeSolution/ListSample/App.xaml.cs | 17 +++ PacticeSolution/ListSample/ListSample.csproj | 112 +++++++++++++++++ PacticeSolution/ListSample/MainWindow.xaml | 61 +++++++++ PacticeSolution/ListSample/MainWindow.xaml.cs | 42 +++++++ PacticeSolution/ListSample/Model/Student.cs | 66 ++++++++++ .../ListSample/Properties/AssemblyInfo.cs | 55 ++++++++ .../Properties/Resources.Designer.cs | 71 +++++++++++ .../ListSample/Properties/Resources.resx | 117 ++++++++++++++++++ .../Properties/Settings.Designer.cs | 30 +++++ .../ListSample/Properties/Settings.settings | 7 ++ .../ListSample/Resources.Designer.cs | 73 +++++++++++ PacticeSolution/ListSample/Resources.resx | 101 +++++++++++++++ PacticeSolution/ListSample/Resources/Man.png | Bin 0 -> 6001 bytes .../ListSample/ViewModel/StudentList.cs | 27 ++++ PacticeSolution/PacticeSolution.sln | 6 + Resources/Man.png | Bin 0 -> 6001 bytes 18 files changed, 800 insertions(+) create mode 100644 PacticeSolution/ListSample/App.config create mode 100644 PacticeSolution/ListSample/App.xaml create mode 100644 PacticeSolution/ListSample/App.xaml.cs create mode 100644 PacticeSolution/ListSample/ListSample.csproj create mode 100644 PacticeSolution/ListSample/MainWindow.xaml create mode 100644 PacticeSolution/ListSample/MainWindow.xaml.cs create mode 100644 PacticeSolution/ListSample/Model/Student.cs create mode 100644 PacticeSolution/ListSample/Properties/AssemblyInfo.cs create mode 100644 PacticeSolution/ListSample/Properties/Resources.Designer.cs create mode 100644 PacticeSolution/ListSample/Properties/Resources.resx create mode 100644 PacticeSolution/ListSample/Properties/Settings.Designer.cs create mode 100644 PacticeSolution/ListSample/Properties/Settings.settings create mode 100644 PacticeSolution/ListSample/Resources.Designer.cs create mode 100644 PacticeSolution/ListSample/Resources.resx create mode 100644 PacticeSolution/ListSample/Resources/Man.png create mode 100644 PacticeSolution/ListSample/ViewModel/StudentList.cs create mode 100644 Resources/Man.png 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + +