From fad7fdc0ac568b5f3607ad9b0fd96bad44477b6c Mon Sep 17 00:00:00 2001 From: syneffort Date: Tue, 13 Dec 2022 09:36:16 +0900 Subject: [PATCH] listBox --- WinFormStudy/DataGridViewControl/Form1.cs | 6 - WinFormStudy/ListBoxControl/App.config | 6 + WinFormStudy/ListBoxControl/Form1.Designer.cs | 63 +++++++++ WinFormStudy/ListBoxControl/Form1.cs | 68 ++++++++++ WinFormStudy/ListBoxControl/Form1.resx | 120 ++++++++++++++++++ .../ListBoxControl/ListBoxControl.csproj | 82 ++++++++++++ WinFormStudy/ListBoxControl/Program.cs | 22 ++++ .../ListBoxControl/Properties/AssemblyInfo.cs | 36 ++++++ .../Properties/Resources.Designer.cs | 70 ++++++++++ .../ListBoxControl/Properties/Resources.resx | 117 +++++++++++++++++ .../Properties/Settings.Designer.cs | 29 +++++ .../Properties/Settings.settings | 7 + WinFormStudy/WinFormStudy.sln | 6 + extLib/PSqLiteWrapper.dll | Bin 2055680 -> 2055680 bytes 14 files changed, 626 insertions(+), 6 deletions(-) create mode 100644 WinFormStudy/ListBoxControl/App.config create mode 100644 WinFormStudy/ListBoxControl/Form1.Designer.cs create mode 100644 WinFormStudy/ListBoxControl/Form1.cs create mode 100644 WinFormStudy/ListBoxControl/Form1.resx create mode 100644 WinFormStudy/ListBoxControl/ListBoxControl.csproj create mode 100644 WinFormStudy/ListBoxControl/Program.cs create mode 100644 WinFormStudy/ListBoxControl/Properties/AssemblyInfo.cs create mode 100644 WinFormStudy/ListBoxControl/Properties/Resources.Designer.cs create mode 100644 WinFormStudy/ListBoxControl/Properties/Resources.resx create mode 100644 WinFormStudy/ListBoxControl/Properties/Settings.Designer.cs create mode 100644 WinFormStudy/ListBoxControl/Properties/Settings.settings diff --git a/WinFormStudy/DataGridViewControl/Form1.cs b/WinFormStudy/DataGridViewControl/Form1.cs index dd2e16d..7fd1184 100644 --- a/WinFormStudy/DataGridViewControl/Form1.cs +++ b/WinFormStudy/DataGridViewControl/Form1.cs @@ -29,14 +29,8 @@ namespace DataGridViewControl PSqLite.DBPath = @"D:\SQLite\mydb.db"; _adapter = PSqLite.GetAdapterSelectQuery(PSqLite.Connection, "SELECT * FROM member;"); - SQLiteCommandBuilder builder = new SQLiteCommandBuilder(_adapter); - _adapter.UpdateCommand = builder.GetUpdateCommand(); - _adapter.DeleteCommand = builder.GetDeleteCommand(); - _adapter.InsertCommand = builder.GetInsertCommand(); - _table = new DataTable(); _adapter.Fill(_table); - dataGridView.DataSource = _table; } diff --git a/WinFormStudy/ListBoxControl/App.config b/WinFormStudy/ListBoxControl/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/WinFormStudy/ListBoxControl/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WinFormStudy/ListBoxControl/Form1.Designer.cs b/WinFormStudy/ListBoxControl/Form1.Designer.cs new file mode 100644 index 0000000..cbe2802 --- /dev/null +++ b/WinFormStudy/ListBoxControl/Form1.Designer.cs @@ -0,0 +1,63 @@ + +namespace ListBoxControl +{ + partial class Form1 + { + /// + /// 필수 디자이너 변수입니다. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 사용 중인 모든 리소스를 정리합니다. + /// + /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form 디자이너에서 생성한 코드 + + /// + /// 디자이너 지원에 필요한 메서드입니다. + /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. + /// + private void InitializeComponent() + { + this.listBox = new System.Windows.Forms.ListBox(); + this.SuspendLayout(); + // + // listBox + // + this.listBox.Dock = System.Windows.Forms.DockStyle.Fill; + this.listBox.FormattingEnabled = true; + this.listBox.ItemHeight = 12; + this.listBox.Location = new System.Drawing.Point(0, 0); + this.listBox.Name = "listBox"; + this.listBox.Size = new System.Drawing.Size(285, 307); + this.listBox.TabIndex = 0; + this.listBox.SelectedIndexChanged += new System.EventHandler(this.listBox_SelectedIndexChanged); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(285, 307); + this.Controls.Add(this.listBox); + this.Name = "Form1"; + this.Text = "Form1"; + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.ListBox listBox; + } +} + diff --git a/WinFormStudy/ListBoxControl/Form1.cs b/WinFormStudy/ListBoxControl/Form1.cs new file mode 100644 index 0000000..f22c843 --- /dev/null +++ b/WinFormStudy/ListBoxControl/Form1.cs @@ -0,0 +1,68 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Diagnostics; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ListBoxControl +{ + public enum CTR_CODE + { + kor, + bri, + jpn, + chn, + ind, + frc, + ger, + ita, + } + + public partial class Form1 : Form + { + List dataSource; + + public Form1() + { + InitializeComponent(); + InitInstance(); + } + + private void InitInstance() + { + dataSource = new List(); + dataSource.Add(new Country() { Name = "한국", Code = CTR_CODE.kor }); + dataSource.Add(new Country() { Name = "영국", Code = CTR_CODE.bri }); + dataSource.Add(new Country() { Name = "일본", Code = CTR_CODE.jpn }); + dataSource.Add(new Country() { Name = "중국", Code = CTR_CODE.chn }); + dataSource.Add(new Country() { Name = "인도", Code = CTR_CODE.ind }); + dataSource.Add(new Country() { Name = "프랑스", Code = CTR_CODE.frc }); + dataSource.Add(new Country() { Name = "독일", Code = CTR_CODE.ger }); + dataSource.Add(new Country() { Name = "이탈리아", Code = CTR_CODE.ita }); + + listBox.DataSource = dataSource; + listBox.DisplayMember = "Name"; + listBox.ValueMember = "Code"; + } + + private void listBox_SelectedIndexChanged(object sender, EventArgs e) + { + Country selected = listBox.SelectedItem as Country; + if (selected == null) + return; + + Debug.WriteLine($"Name: {selected.Name}, Code: {selected.Code}"); + } + } + + public class Country + { + public string Name { get; set; } = "Country"; + public CTR_CODE Code { get; set; } + } +} diff --git a/WinFormStudy/ListBoxControl/Form1.resx b/WinFormStudy/ListBoxControl/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/WinFormStudy/ListBoxControl/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/WinFormStudy/ListBoxControl/ListBoxControl.csproj b/WinFormStudy/ListBoxControl/ListBoxControl.csproj new file mode 100644 index 0000000..b016478 --- /dev/null +++ b/WinFormStudy/ListBoxControl/ListBoxControl.csproj @@ -0,0 +1,82 @@ + + + + + Debug + AnyCPU + {6DAC4750-1A5B-493E-90DB-11064EF456FB} + WinExe + ListBoxControl + ListBoxControl + v4.5 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/WinFormStudy/ListBoxControl/Program.cs b/WinFormStudy/ListBoxControl/Program.cs new file mode 100644 index 0000000..7d6a25c --- /dev/null +++ b/WinFormStudy/ListBoxControl/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ListBoxControl +{ + static class Program + { + /// + /// 해당 애플리케이션의 주 진입점입니다. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/WinFormStudy/ListBoxControl/Properties/AssemblyInfo.cs b/WinFormStudy/ListBoxControl/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f2699a5 --- /dev/null +++ b/WinFormStudy/ListBoxControl/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 +// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 +// 이러한 특성 값을 변경하세요. +[assembly: AssemblyTitle("ListBoxControl")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ListBoxControl")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 +// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 +// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. +[assembly: ComVisible(false)] + +// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다. +[assembly: Guid("6dac4750-1a5b-493e-90db-11064ef456fb")] + +// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. +// +// 주 버전 +// 부 버전 +// 빌드 번호 +// 수정 버전 +// +// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 +// 기본값으로 할 수 있습니다. +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/WinFormStudy/ListBoxControl/Properties/Resources.Designer.cs b/WinFormStudy/ListBoxControl/Properties/Resources.Designer.cs new file mode 100644 index 0000000..a432d4a --- /dev/null +++ b/WinFormStudy/ListBoxControl/Properties/Resources.Designer.cs @@ -0,0 +1,70 @@ +//------------------------------------------------------------------------------ +// +// 이 코드는 도구를 사용하여 생성되었습니다. +// 런타임 버전:4.0.30319.42000 +// +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 +// 이러한 변경 내용이 손실됩니다. +// +//------------------------------------------------------------------------------ + + +namespace ListBoxControl.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("ListBoxControl.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/WinFormStudy/ListBoxControl/Properties/Resources.resx b/WinFormStudy/ListBoxControl/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/WinFormStudy/ListBoxControl/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/WinFormStudy/ListBoxControl/Properties/Settings.Designer.cs b/WinFormStudy/ListBoxControl/Properties/Settings.Designer.cs new file mode 100644 index 0000000..ed562c2 --- /dev/null +++ b/WinFormStudy/ListBoxControl/Properties/Settings.Designer.cs @@ -0,0 +1,29 @@ +//------------------------------------------------------------------------------ +// +// 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 ListBoxControl.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/WinFormStudy/ListBoxControl/Properties/Settings.settings b/WinFormStudy/ListBoxControl/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/WinFormStudy/ListBoxControl/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/WinFormStudy/WinFormStudy.sln b/WinFormStudy/WinFormStudy.sln index feb5de5..e6cef9c 100644 --- a/WinFormStudy/WinFormStudy.sln +++ b/WinFormStudy/WinFormStudy.sln @@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComboBoxControl", "ComboBox EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataGridViewControl", "DataGridViewControl\DataGridViewControl.csproj", "{FF9C6945-861E-4AC2-A3FE-E0A49BE4B4F5}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ListBoxControl", "ListBoxControl\ListBoxControl.csproj", "{6DAC4750-1A5B-493E-90DB-11064EF456FB}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,6 +29,10 @@ Global {FF9C6945-861E-4AC2-A3FE-E0A49BE4B4F5}.Debug|Any CPU.Build.0 = Debug|Any CPU {FF9C6945-861E-4AC2-A3FE-E0A49BE4B4F5}.Release|Any CPU.ActiveCfg = Release|Any CPU {FF9C6945-861E-4AC2-A3FE-E0A49BE4B4F5}.Release|Any CPU.Build.0 = Release|Any CPU + {6DAC4750-1A5B-493E-90DB-11064EF456FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6DAC4750-1A5B-493E-90DB-11064EF456FB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6DAC4750-1A5B-493E-90DB-11064EF456FB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6DAC4750-1A5B-493E-90DB-11064EF456FB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/extLib/PSqLiteWrapper.dll b/extLib/PSqLiteWrapper.dll index 913cee460fc8454ebf7e484ffcbad169160fb690..140b1a665d35a09fb65212d7f92fa889c9843dbe 100644 GIT binary patch delta 3400 zcmZ8k4Nz3q6+ZXA{{5gp$yhFP1=#RW16HBGtq`gw6;zro!B2+J9av))J`X+V{0`1nbsy|GX3t|MWqYp zyXSoO+;h*n_uTvDrB3Zgo!asBuc}9urzghthxol)$6i@we>mdOLxf+-rSB_a6@lC% zF6F{rj*gae<0>~g-p^`yM{ImI+gTCb>I!FC4&kKHe;;+};SwSyS)%ujSMWw9NfcPX zsRg7)ZeuP-s0`9q}WjAbq-5h9<|zEy`P5-)UOk45)t93xNx0e$6X~!X=hOWgz`WN^u6;dvqpKu%>G5{={6ji%=R8&>Rn4lbBc$BbIW zU-z28g+*npjT(BSc|2w|w}^U3iTM+E2~EtLxLauIEe#c??iA+mcd-M*$Hg`*96w_Q z+7`kw(=(r;=OKW1oBNjF&d=nUIJkZQBKWPqy4&6h74&QX+!5hj!PTl+Zn{b%Scp6< zTN0(J7DsR>e8o+yE?cyPpXtRYfSBD8xnX3T8XoJ3M*R~>m?KC6bFYYm&H0e&<0_*q)Xb|nhMka!Al$l!f_=WOL<>l zvj_!GdFgnYTai4fWiAb!-ZM*doraYwhED6W65U5X(z_L%F6x4RUm{a#$fnozYv?`5 zyA_){_%-x?#Dx!|7fqXfWww%!Mh(&X4MTV?gsvlzwYVoj#&&pC%V?d}Xc9)PG72O^ zg!rc_kn1(b@w(Or{Zmcozu-cD%_!G&dR8X7%@m{FCc!)*$8JzX>K7!wpuA~}(i}Xz zPVdP0D^%fMFY%7%-0}pE_fgkYGz_|HSU`*mMI+vv0)JoJ|Z>o`s>EW=L zWGwiS5kTs`ZztE?VHe-!umNmUSjhp5M@ zfwlLR)kg}2=b&Ch=XR<=u^hymnQ=`&x7aOBde+lq(Sphh>skA-ua9J{-PTKZK^>OX zGr zVMSDhyIKr1%~x45U6$4%3R?eQrF056`1E>(=pgQIk^TlPKzQL`l@x3pqr*5rj22^C zru8K#H=gD1)H9yb4BnrNrj3FEg;wG;GP*|*c(=rNaS3wTf^dxTC9@3E@NBOo`M6|a zKrFcQS&KNF$}~TTbt|DWW)%2stA%R8v{8k`)+D`cw!pZ_YiJ3D^-}6Y$1>`swbp}R z+Lco3r%qru?Wf0RP=*_lKHKOm?Mt)^`XS&t{vr+0gM0$|9;pvW{e;xN1KpBi$4FPs z)AKZ6zY0t?nt!JW3M&7hmt{u@9XD@64;l(PLz|RYzzHg66VzrcVkI=HErxzU>tJUQ zZUs9pgPx&tdJoH`8|str->dD0=ah*)I!Z6V|0sQr{h7XI{G9z&&QeIZ*6+dmE@}RW zy^IiTR7eH-W$2#yp&VeMOvKXVX7N?J%s!?m{uyIz!qE8hWNA6vf*$35AQlXg2HQxE#Zlu?=yH&Wa)4SWbloZ0&MS zss&fxdgDU#$hil8xIgE5PxHu%wA$n1bz*R*)mfs28FO0IFgevytu{#k@3%Q)ib=L= zlH=!k$k1mwpXWBuwl>#IB}_K1cH8O9H*}|~-08-@>2y0W6)(;%EljXQhuU}Cs-muun`iR{2* z6}mG+Gw8%}4a12!-61%JINrQ0RKUfI=^yvHrE|6!B0|X7iiw;qbejdHsUgo$P!~&_ z+LivK*X?3s>E(~OQ$^yVMid@yMcN2S;p-)}D!nM?mInW}%B7y(j@~6Fyk~#e*mM8b zL`TQZ9&h*{y(#AQIfdCT8ZmmF(8FUDMGC%i(l=u6jY+%D{Y2sS-8Jc7<9@`(78w5n DC4p5P delta 3176 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