DESKTOP-9E09AIN\0067

project

Showing 46 changed files with 1530 additions and 0 deletions
No preview for this file type
No preview for this file type
1 +
2 +Microsoft Visual Studio Solution File, Format Version 12.00
3 +# Visual Studio 15
4 +VisualStudioVersion = 15.0.26730.12
5 +MinimumVisualStudioVersion = 10.0.40219.1
6 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "oneTouch", "oneTouch\oneTouch.csproj", "{75A79E64-7235-46E2-87A6-59DD38F86F97}"
7 +EndProject
8 +Global
9 + GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 + Debug|Any CPU = Debug|Any CPU
11 + Release|Any CPU = Release|Any CPU
12 + EndGlobalSection
13 + GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 + {75A79E64-7235-46E2-87A6-59DD38F86F97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 + {75A79E64-7235-46E2-87A6-59DD38F86F97}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 + {75A79E64-7235-46E2-87A6-59DD38F86F97}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 + {75A79E64-7235-46E2-87A6-59DD38F86F97}.Release|Any CPU.Build.0 = Release|Any CPU
18 + EndGlobalSection
19 + GlobalSection(SolutionProperties) = preSolution
20 + HideSolutionNode = FALSE
21 + EndGlobalSection
22 + GlobalSection(ExtensibilityGlobals) = postSolution
23 + SolutionGuid = {3C38B65C-3897-4B34-9A4A-1B77D2BFE302}
24 + EndGlobalSection
25 +EndGlobal
1 +<?xml version="1.0" encoding="utf-8" ?>
2 +<configuration>
3 + <startup>
4 + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5 + </startup>
6 +</configuration>
...\ No newline at end of file ...\ No newline at end of file
1 +namespace oneTouch
2 +{
3 + partial class Client
4 + {
5 + /// <summary>
6 + /// Required designer variable.
7 + /// </summary>
8 + private System.ComponentModel.IContainer components = null;
9 +
10 + /// <summary>
11 + /// Clean up any resources being used.
12 + /// </summary>
13 + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 + protected override void Dispose(bool disposing)
15 + {
16 + if (disposing && (components != null))
17 + {
18 + components.Dispose();
19 + }
20 + base.Dispose(disposing);
21 + }
22 +
23 + #region Windows Form Designer generated code
24 +
25 + /// <summary>
26 + /// Required method for Designer support - do not modify
27 + /// the contents of this method with the code editor.
28 + /// </summary>
29 + private void InitializeComponent()
30 + {
31 + this.button1 = new System.Windows.Forms.Button();
32 + this.comboBox1 = new System.Windows.Forms.ComboBox();
33 + this.listBox1 = new System.Windows.Forms.ListBox();
34 + this.SuspendLayout();
35 + //
36 + // button1
37 + //
38 + this.button1.Location = new System.Drawing.Point(52, 36);
39 + this.button1.Name = "button1";
40 + this.button1.Size = new System.Drawing.Size(145, 38);
41 + this.button1.TabIndex = 0;
42 + this.button1.Text = "정보 업데이트";
43 + this.button1.UseVisualStyleBackColor = true;
44 + this.button1.Click += new System.EventHandler(this.button1_Click);
45 + //
46 + // comboBox1
47 + //
48 + this.comboBox1.FormattingEnabled = true;
49 + this.comboBox1.Items.AddRange(new object[] {
50 + "내가 원하는 룸메이트",
51 + "나를 원하는 룸메이트",
52 + "서로 원하는 룸메이트"});
53 + this.comboBox1.Location = new System.Drawing.Point(265, 45);
54 + this.comboBox1.Name = "comboBox1";
55 + this.comboBox1.Size = new System.Drawing.Size(158, 23);
56 + this.comboBox1.TabIndex = 2;
57 + //
58 + // listBox1
59 + //
60 + this.listBox1.FormattingEnabled = true;
61 + this.listBox1.ItemHeight = 15;
62 + this.listBox1.Location = new System.Drawing.Point(43, 102);
63 + this.listBox1.Name = "listBox1";
64 + this.listBox1.Size = new System.Drawing.Size(391, 199);
65 + this.listBox1.TabIndex = 3;
66 + //
67 + // Client
68 + //
69 + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
70 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
71 + this.ClientSize = new System.Drawing.Size(561, 342);
72 + this.Controls.Add(this.listBox1);
73 + this.Controls.Add(this.comboBox1);
74 + this.Controls.Add(this.button1);
75 + this.Name = "Client";
76 + this.Text = "Client";
77 + this.ResumeLayout(false);
78 +
79 + }
80 +
81 + #endregion
82 +
83 + private System.Windows.Forms.Button button1;
84 + private System.Windows.Forms.ComboBox comboBox1;
85 + private System.Windows.Forms.ListBox listBox1;
86 + }
87 +}
...\ No newline at end of file ...\ No newline at end of file
1 +using System;
2 +using System.Collections.Generic;
3 +using System.ComponentModel;
4 +using System.Data;
5 +using System.Drawing;
6 +using System.Linq;
7 +using System.Text;
8 +using System.Threading.Tasks;
9 +using System.Windows.Forms;
10 +
11 +namespace oneTouch
12 +{
13 + public partial class Client : Form
14 + {
15 + public Client()
16 + {
17 + InitializeComponent();
18 + }
19 +
20 + private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
21 + {
22 +
23 + }
24 +
25 + private void button1_Click(object sender, EventArgs e)
26 + {
27 + want want1 = new want();
28 + want1.ShowDialog();
29 + }
30 + }
31 +}
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<root>
3 + <!--
4 + Microsoft ResX Schema
5 +
6 + Version 2.0
7 +
8 + The primary goals of this format is to allow a simple XML format
9 + that is mostly human readable. The generation and parsing of the
10 + various data types are done through the TypeConverter classes
11 + associated with the data types.
12 +
13 + Example:
14 +
15 + ... ado.net/XML headers & schema ...
16 + <resheader name="resmimetype">text/microsoft-resx</resheader>
17 + <resheader name="version">2.0</resheader>
18 + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19 + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20 + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21 + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22 + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23 + <value>[base64 mime encoded serialized .NET Framework object]</value>
24 + </data>
25 + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26 + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27 + <comment>This is a comment</comment>
28 + </data>
29 +
30 + There are any number of "resheader" rows that contain simple
31 + name/value pairs.
32 +
33 + Each data row contains a name, and value. The row also contains a
34 + type or mimetype. Type corresponds to a .NET class that support
35 + text/value conversion through the TypeConverter architecture.
36 + Classes that don't support this are serialized and stored with the
37 + mimetype set.
38 +
39 + The mimetype is used for serialized objects, and tells the
40 + ResXResourceReader how to depersist the object. This is currently not
41 + extensible. For a given mimetype the value must be set accordingly:
42 +
43 + Note - application/x-microsoft.net.object.binary.base64 is the format
44 + that the ResXResourceWriter will generate, however the reader can
45 + read any of the formats listed below.
46 +
47 + mimetype: application/x-microsoft.net.object.binary.base64
48 + value : The object must be serialized with
49 + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50 + : and then encoded with base64 encoding.
51 +
52 + mimetype: application/x-microsoft.net.object.soap.base64
53 + value : The object must be serialized with
54 + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55 + : and then encoded with base64 encoding.
56 +
57 + mimetype: application/x-microsoft.net.object.bytearray.base64
58 + value : The object must be serialized into a byte array
59 + : using a System.ComponentModel.TypeConverter
60 + : and then encoded with base64 encoding.
61 + -->
62 + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63 + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64 + <xsd:element name="root" msdata:IsDataSet="true">
65 + <xsd:complexType>
66 + <xsd:choice maxOccurs="unbounded">
67 + <xsd:element name="metadata">
68 + <xsd:complexType>
69 + <xsd:sequence>
70 + <xsd:element name="value" type="xsd:string" minOccurs="0" />
71 + </xsd:sequence>
72 + <xsd:attribute name="name" use="required" type="xsd:string" />
73 + <xsd:attribute name="type" type="xsd:string" />
74 + <xsd:attribute name="mimetype" type="xsd:string" />
75 + <xsd:attribute ref="xml:space" />
76 + </xsd:complexType>
77 + </xsd:element>
78 + <xsd:element name="assembly">
79 + <xsd:complexType>
80 + <xsd:attribute name="alias" type="xsd:string" />
81 + <xsd:attribute name="name" type="xsd:string" />
82 + </xsd:complexType>
83 + </xsd:element>
84 + <xsd:element name="data">
85 + <xsd:complexType>
86 + <xsd:sequence>
87 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88 + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89 + </xsd:sequence>
90 + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91 + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92 + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93 + <xsd:attribute ref="xml:space" />
94 + </xsd:complexType>
95 + </xsd:element>
96 + <xsd:element name="resheader">
97 + <xsd:complexType>
98 + <xsd:sequence>
99 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100 + </xsd:sequence>
101 + <xsd:attribute name="name" type="xsd:string" use="required" />
102 + </xsd:complexType>
103 + </xsd:element>
104 + </xsd:choice>
105 + </xsd:complexType>
106 + </xsd:element>
107 + </xsd:schema>
108 + <resheader name="resmimetype">
109 + <value>text/microsoft-resx</value>
110 + </resheader>
111 + <resheader name="version">
112 + <value>2.0</value>
113 + </resheader>
114 + <resheader name="reader">
115 + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116 + </resheader>
117 + <resheader name="writer">
118 + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119 + </resheader>
120 +</root>
...\ No newline at end of file ...\ No newline at end of file
1 +namespace oneTouch
2 +{
3 + partial class Create
4 + {
5 + /// <summary>
6 + /// Required designer variable.
7 + /// </summary>
8 + private System.ComponentModel.IContainer components = null;
9 +
10 + /// <summary>
11 + /// Clean up any resources being used.
12 + /// </summary>
13 + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 + protected override void Dispose(bool disposing)
15 + {
16 + if (disposing && (components != null))
17 + {
18 + components.Dispose();
19 + }
20 + base.Dispose(disposing);
21 + }
22 +
23 + #region Windows Form Designer generated code
24 +
25 + /// <summary>
26 + /// Required method for Designer support - do not modify
27 + /// the contents of this method with the code editor.
28 + /// </summary>
29 + private void InitializeComponent()
30 + {
31 + this.label1 = new System.Windows.Forms.Label();
32 + this.textBox1 = new System.Windows.Forms.TextBox();
33 + this.textBox2 = new System.Windows.Forms.TextBox();
34 + this.textBox3 = new System.Windows.Forms.TextBox();
35 + this.textBox4 = new System.Windows.Forms.TextBox();
36 + this.textBox5 = new System.Windows.Forms.TextBox();
37 + this.button1 = new System.Windows.Forms.Button();
38 + this.SuspendLayout();
39 + //
40 + // label1
41 + //
42 + this.label1.AutoSize = true;
43 + this.label1.Location = new System.Drawing.Point(174, 37);
44 + this.label1.Name = "label1";
45 + this.label1.Size = new System.Drawing.Size(72, 15);
46 + this.label1.TabIndex = 0;
47 + this.label1.Text = "회원 가입";
48 + //
49 + // textBox1
50 + //
51 + this.textBox1.Location = new System.Drawing.Point(105, 70);
52 + this.textBox1.Name = "textBox1";
53 + this.textBox1.Size = new System.Drawing.Size(199, 25);
54 + this.textBox1.TabIndex = 1;
55 + this.textBox1.Tag = "";
56 + this.textBox1.Text = "아이디";
57 + //
58 + // textBox2
59 + //
60 + this.textBox2.Location = new System.Drawing.Point(105, 101);
61 + this.textBox2.Name = "textBox2";
62 + this.textBox2.Size = new System.Drawing.Size(199, 25);
63 + this.textBox2.TabIndex = 2;
64 + this.textBox2.Tag = "";
65 + this.textBox2.Text = "패스워드";
66 + //
67 + // textBox3
68 + //
69 + this.textBox3.Location = new System.Drawing.Point(105, 132);
70 + this.textBox3.Name = "textBox3";
71 + this.textBox3.Size = new System.Drawing.Size(199, 25);
72 + this.textBox3.TabIndex = 3;
73 + this.textBox3.Tag = "";
74 + this.textBox3.Text = "이름";
75 + //
76 + // textBox4
77 + //
78 + this.textBox4.Location = new System.Drawing.Point(105, 163);
79 + this.textBox4.Name = "textBox4";
80 + this.textBox4.Size = new System.Drawing.Size(199, 25);
81 + this.textBox4.TabIndex = 4;
82 + this.textBox4.Tag = "";
83 + this.textBox4.Text = "생년월일";
84 + //
85 + // textBox5
86 + //
87 + this.textBox5.Location = new System.Drawing.Point(105, 194);
88 + this.textBox5.Name = "textBox5";
89 + this.textBox5.Size = new System.Drawing.Size(199, 25);
90 + this.textBox5.TabIndex = 5;
91 + this.textBox5.Tag = "";
92 + this.textBox5.Text = "성별";
93 + //
94 + // button1
95 + //
96 + this.button1.Location = new System.Drawing.Point(91, 247);
97 + this.button1.Name = "button1";
98 + this.button1.Size = new System.Drawing.Size(213, 47);
99 + this.button1.TabIndex = 6;
100 + this.button1.Text = "JOIN";
101 + this.button1.UseVisualStyleBackColor = true;
102 + this.button1.Click += new System.EventHandler(this.button1_Click);
103 + //
104 + // Create
105 + //
106 + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
107 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108 + this.ClientSize = new System.Drawing.Size(441, 353);
109 + this.Controls.Add(this.button1);
110 + this.Controls.Add(this.textBox5);
111 + this.Controls.Add(this.textBox4);
112 + this.Controls.Add(this.textBox3);
113 + this.Controls.Add(this.textBox2);
114 + this.Controls.Add(this.textBox1);
115 + this.Controls.Add(this.label1);
116 + this.Name = "Create";
117 + this.Text = "Create";
118 + this.ResumeLayout(false);
119 + this.PerformLayout();
120 +
121 + }
122 +
123 + #endregion
124 +
125 + private System.Windows.Forms.Label label1;
126 + private System.Windows.Forms.TextBox textBox1;
127 + private System.Windows.Forms.TextBox textBox2;
128 + private System.Windows.Forms.TextBox textBox3;
129 + private System.Windows.Forms.TextBox textBox4;
130 + private System.Windows.Forms.TextBox textBox5;
131 + private System.Windows.Forms.Button button1;
132 + }
133 +}
...\ No newline at end of file ...\ No newline at end of file
1 +using System;
2 +using System.Collections.Generic;
3 +using System.ComponentModel;
4 +using System.Data;
5 +using System.Drawing;
6 +using System.Linq;
7 +using System.Text;
8 +using System.Threading.Tasks;
9 +using System.Windows.Forms;
10 +
11 +namespace oneTouch
12 +{
13 + public partial class Create : Form
14 + {
15 + public Create()
16 + {
17 + InitializeComponent();
18 + }
19 +
20 + private void button1_Click(object sender, EventArgs e)
21 + {
22 + this.Close();
23 + }
24 + }
25 +}
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<root>
3 + <!--
4 + Microsoft ResX Schema
5 +
6 + Version 2.0
7 +
8 + The primary goals of this format is to allow a simple XML format
9 + that is mostly human readable. The generation and parsing of the
10 + various data types are done through the TypeConverter classes
11 + associated with the data types.
12 +
13 + Example:
14 +
15 + ... ado.net/XML headers & schema ...
16 + <resheader name="resmimetype">text/microsoft-resx</resheader>
17 + <resheader name="version">2.0</resheader>
18 + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19 + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20 + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21 + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22 + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23 + <value>[base64 mime encoded serialized .NET Framework object]</value>
24 + </data>
25 + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26 + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27 + <comment>This is a comment</comment>
28 + </data>
29 +
30 + There are any number of "resheader" rows that contain simple
31 + name/value pairs.
32 +
33 + Each data row contains a name, and value. The row also contains a
34 + type or mimetype. Type corresponds to a .NET class that support
35 + text/value conversion through the TypeConverter architecture.
36 + Classes that don't support this are serialized and stored with the
37 + mimetype set.
38 +
39 + The mimetype is used for serialized objects, and tells the
40 + ResXResourceReader how to depersist the object. This is currently not
41 + extensible. For a given mimetype the value must be set accordingly:
42 +
43 + Note - application/x-microsoft.net.object.binary.base64 is the format
44 + that the ResXResourceWriter will generate, however the reader can
45 + read any of the formats listed below.
46 +
47 + mimetype: application/x-microsoft.net.object.binary.base64
48 + value : The object must be serialized with
49 + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50 + : and then encoded with base64 encoding.
51 +
52 + mimetype: application/x-microsoft.net.object.soap.base64
53 + value : The object must be serialized with
54 + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55 + : and then encoded with base64 encoding.
56 +
57 + mimetype: application/x-microsoft.net.object.bytearray.base64
58 + value : The object must be serialized into a byte array
59 + : using a System.ComponentModel.TypeConverter
60 + : and then encoded with base64 encoding.
61 + -->
62 + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63 + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64 + <xsd:element name="root" msdata:IsDataSet="true">
65 + <xsd:complexType>
66 + <xsd:choice maxOccurs="unbounded">
67 + <xsd:element name="metadata">
68 + <xsd:complexType>
69 + <xsd:sequence>
70 + <xsd:element name="value" type="xsd:string" minOccurs="0" />
71 + </xsd:sequence>
72 + <xsd:attribute name="name" use="required" type="xsd:string" />
73 + <xsd:attribute name="type" type="xsd:string" />
74 + <xsd:attribute name="mimetype" type="xsd:string" />
75 + <xsd:attribute ref="xml:space" />
76 + </xsd:complexType>
77 + </xsd:element>
78 + <xsd:element name="assembly">
79 + <xsd:complexType>
80 + <xsd:attribute name="alias" type="xsd:string" />
81 + <xsd:attribute name="name" type="xsd:string" />
82 + </xsd:complexType>
83 + </xsd:element>
84 + <xsd:element name="data">
85 + <xsd:complexType>
86 + <xsd:sequence>
87 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88 + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89 + </xsd:sequence>
90 + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91 + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92 + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93 + <xsd:attribute ref="xml:space" />
94 + </xsd:complexType>
95 + </xsd:element>
96 + <xsd:element name="resheader">
97 + <xsd:complexType>
98 + <xsd:sequence>
99 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100 + </xsd:sequence>
101 + <xsd:attribute name="name" type="xsd:string" use="required" />
102 + </xsd:complexType>
103 + </xsd:element>
104 + </xsd:choice>
105 + </xsd:complexType>
106 + </xsd:element>
107 + </xsd:schema>
108 + <resheader name="resmimetype">
109 + <value>text/microsoft-resx</value>
110 + </resheader>
111 + <resheader name="version">
112 + <value>2.0</value>
113 + </resheader>
114 + <resheader name="reader">
115 + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116 + </resheader>
117 + <resheader name="writer">
118 + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119 + </resheader>
120 +</root>
...\ No newline at end of file ...\ No newline at end of file
1 +namespace oneTouch
2 +{
3 + partial class _main
4 + {
5 + /// <summary>
6 + /// 필수 디자이너 변수입니다.
7 + /// </summary>
8 + private System.ComponentModel.IContainer components = null;
9 +
10 + /// <summary>
11 + /// 사용 중인 모든 리소스를 정리합니다.
12 + /// </summary>
13 + /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
14 + protected override void Dispose(bool disposing)
15 + {
16 + if (disposing && (components != null))
17 + {
18 + components.Dispose();
19 + }
20 + base.Dispose(disposing);
21 + }
22 +
23 + #region Windows Form 디자이너에서 생성한 코드
24 +
25 + /// <summary>
26 + /// 디자이너 지원에 필요한 메서드입니다.
27 + /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
28 + /// </summary>
29 + private void InitializeComponent()
30 + {
31 + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(_main));
32 + this.label1 = new System.Windows.Forms.Label();
33 + this.textBox1 = new System.Windows.Forms.TextBox();
34 + this.textBox2 = new System.Windows.Forms.TextBox();
35 + this.label2 = new System.Windows.Forms.Label();
36 + this.label3 = new System.Windows.Forms.Label();
37 + this.button1 = new System.Windows.Forms.Button();
38 + this.linkLabel1 = new System.Windows.Forms.LinkLabel();
39 + this.SuspendLayout();
40 + //
41 + // label1
42 + //
43 + this.label1.AutoSize = true;
44 + this.label1.Font = new System.Drawing.Font("굴림", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
45 + this.label1.Location = new System.Drawing.Point(49, 24);
46 + this.label1.Name = "label1";
47 + this.label1.Size = new System.Drawing.Size(255, 19);
48 + this.label1.TabIndex = 0;
49 + this.label1.Text = "완타치 룸메이트 매칭 시스템";
50 + this.label1.Click += new System.EventHandler(this.label1_Click);
51 + //
52 + // textBox1
53 + //
54 + this.textBox1.Location = new System.Drawing.Point(86, 64);
55 + this.textBox1.Name = "textBox1";
56 + this.textBox1.Size = new System.Drawing.Size(132, 28);
57 + this.textBox1.TabIndex = 1;
58 + //
59 + // textBox2
60 + //
61 + this.textBox2.Location = new System.Drawing.Point(86, 98);
62 + this.textBox2.Name = "textBox2";
63 + this.textBox2.Size = new System.Drawing.Size(132, 28);
64 + this.textBox2.TabIndex = 2;
65 + //
66 + // label2
67 + //
68 + this.label2.AutoSize = true;
69 + this.label2.Font = new System.Drawing.Font("문체부 돋음체", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
70 + this.label2.Location = new System.Drawing.Point(40, 67);
71 + this.label2.Name = "label2";
72 + this.label2.Size = new System.Drawing.Size(41, 17);
73 + this.label2.TabIndex = 3;
74 + this.label2.Text = "ID : ";
75 + //
76 + // label3
77 + //
78 + this.label3.AutoSize = true;
79 + this.label3.Font = new System.Drawing.Font("문체부 돋음체", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
80 + this.label3.Location = new System.Drawing.Point(29, 101);
81 + this.label3.Name = "label3";
82 + this.label3.Size = new System.Drawing.Size(39, 17);
83 + this.label3.TabIndex = 4;
84 + this.label3.Text = "PW :";
85 + //
86 + // button1
87 + //
88 + this.button1.Font = new System.Drawing.Font("문체부 돋음체", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
89 + this.button1.Location = new System.Drawing.Point(234, 64);
90 + this.button1.Name = "button1";
91 + this.button1.Size = new System.Drawing.Size(90, 62);
92 + this.button1.TabIndex = 5;
93 + this.button1.Text = "sign in";
94 + this.button1.UseVisualStyleBackColor = true;
95 + this.button1.Click += new System.EventHandler(this.button1_Click);
96 + //
97 + // linkLabel1
98 + //
99 + this.linkLabel1.AutoSize = true;
100 + this.linkLabel1.Font = new System.Drawing.Font("문체부 돋음체", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
101 + this.linkLabel1.Location = new System.Drawing.Point(228, 141);
102 + this.linkLabel1.Name = "linkLabel1";
103 + this.linkLabel1.Size = new System.Drawing.Size(96, 17);
104 + this.linkLabel1.TabIndex = 6;
105 + this.linkLabel1.TabStop = true;
106 + this.linkLabel1.Text = "Create account";
107 + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
108 + //
109 + // _main
110 + //
111 + this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 21F);
112 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
113 + this.BackColor = System.Drawing.SystemColors.Control;
114 + this.ClientSize = new System.Drawing.Size(368, 174);
115 + this.Controls.Add(this.linkLabel1);
116 + this.Controls.Add(this.button1);
117 + this.Controls.Add(this.label3);
118 + this.Controls.Add(this.label2);
119 + this.Controls.Add(this.textBox2);
120 + this.Controls.Add(this.textBox1);
121 + this.Controls.Add(this.label1);
122 + this.Font = new System.Drawing.Font("나눔고딕", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
123 + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
124 + this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
125 + this.Name = "_main";
126 + this.Text = "One Touch";
127 + this.Load += new System.EventHandler(this._main_Load);
128 + this.ResumeLayout(false);
129 + this.PerformLayout();
130 +
131 + }
132 +
133 + #endregion
134 +
135 + private System.Windows.Forms.Label label1;
136 + private System.Windows.Forms.TextBox textBox1;
137 + private System.Windows.Forms.TextBox textBox2;
138 + private System.Windows.Forms.Label label2;
139 + private System.Windows.Forms.Label label3;
140 + private System.Windows.Forms.Button button1;
141 + private System.Windows.Forms.LinkLabel linkLabel1;
142 + }
143 +}
144 +
1 +using System;
2 +using System.Collections.Generic;
3 +using System.ComponentModel;
4 +using System.Data;
5 +using System.Drawing;
6 +using System.Linq;
7 +using System.Text;
8 +using System.Threading.Tasks;
9 +using System.Windows.Forms;
10 +
11 +namespace oneTouch
12 +{
13 + public partial class _main : System.Windows.Forms.Form
14 + {
15 + public _main()
16 + {
17 + InitializeComponent();
18 + }
19 +
20 + private void label1_Click(object sender, EventArgs e)
21 + {
22 +
23 + }
24 +
25 + private void _main_Load(object sender, EventArgs e)
26 + {
27 +
28 + }
29 +
30 + private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
31 + {
32 + Create sign = new Create();
33 + sign.ShowDialog();
34 + }
35 +
36 + private void button1_Click(object sender, EventArgs e)
37 + {
38 + Client sign = new Client();
39 + sign.ShowDialog();
40 + }
41 + }
42 +}
This diff is collapsed. Click to expand it.
1 +using System;
2 +using System.Collections.Generic;
3 +using System.Linq;
4 +using System.Threading.Tasks;
5 +using System.Windows.Forms;
6 +
7 +namespace oneTouch
8 +{
9 + static class Program
10 + {
11 + /// <summary>
12 + /// 해당 응용 프로그램의 주 진입점입니다.
13 + /// </summary>
14 + [STAThread]
15 + static void Main()
16 + {
17 + Application.EnableVisualStyles();
18 + Application.SetCompatibleTextRenderingDefault(false);
19 + Application.Run(new _main());
20 + }
21 + }
22 +}
1 +using System.Reflection;
2 +using System.Runtime.CompilerServices;
3 +using System.Runtime.InteropServices;
4 +
5 +// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해
6 +// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
7 +// 이러한 특성 값을 변경하세요.
8 +[assembly: AssemblyTitle("oneTouch")]
9 +[assembly: AssemblyDescription("")]
10 +[assembly: AssemblyConfiguration("")]
11 +[assembly: AssemblyCompany("")]
12 +[assembly: AssemblyProduct("oneTouch")]
13 +[assembly: AssemblyCopyright("Copyright © 2018")]
14 +[assembly: AssemblyTrademark("")]
15 +[assembly: AssemblyCulture("")]
16 +
17 +// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에
18 +// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
19 +// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요.
20 +[assembly: ComVisible(false)]
21 +
22 +// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다.
23 +[assembly: Guid("75a79e64-7235-46e2-87a6-59dd38f86f97")]
24 +
25 +// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
26 +//
27 +// 주 버전
28 +// 부 버전
29 +// 빌드 번호
30 +// 수정 버전
31 +//
32 +// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
33 +// 지정되도록 할 수 있습니다.
34 +// [assembly: AssemblyVersion("1.0.*")]
35 +[assembly: AssemblyVersion("1.0.0.0")]
36 +[assembly: AssemblyFileVersion("1.0.0.0")]
1 +//------------------------------------------------------------------------------
2 +// <auto-generated>
3 +// 이 코드는 도구를 사용하여 생성되었습니다.
4 +// 런타임 버전:4.0.30319.42000
5 +//
6 +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
7 +// 이러한 변경 내용이 손실됩니다.
8 +// </auto-generated>
9 +//------------------------------------------------------------------------------
10 +
11 +namespace oneTouch.Properties
12 +{
13 +
14 +
15 + /// <summary>
16 + /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
17 + /// </summary>
18 + // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
19 + // 클래스에서 자동으로 생성되었습니다.
20 + // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여
21 + // ResGen을 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
22 + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
23 + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25 + internal class Resources
26 + {
27 +
28 + private static global::System.Resources.ResourceManager resourceMan;
29 +
30 + private static global::System.Globalization.CultureInfo resourceCulture;
31 +
32 + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
33 + internal Resources()
34 + {
35 + }
36 +
37 + /// <summary>
38 + /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
39 + /// </summary>
40 + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
41 + internal static global::System.Resources.ResourceManager ResourceManager
42 + {
43 + get
44 + {
45 + if ((resourceMan == null))
46 + {
47 + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("oneTouch.Properties.Resources", typeof(Resources).Assembly);
48 + resourceMan = temp;
49 + }
50 + return resourceMan;
51 + }
52 + }
53 +
54 + /// <summary>
55 + /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해
56 + /// 현재 스레드의 CurrentUICulture 속성을 재정의합니다.
57 + /// </summary>
58 + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
59 + internal static global::System.Globalization.CultureInfo Culture
60 + {
61 + get
62 + {
63 + return resourceCulture;
64 + }
65 + set
66 + {
67 + resourceCulture = value;
68 + }
69 + }
70 + }
71 +}
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<root>
3 + <!--
4 + Microsoft ResX Schema
5 +
6 + Version 2.0
7 +
8 + The primary goals of this format is to allow a simple XML format
9 + that is mostly human readable. The generation and parsing of the
10 + various data types are done through the TypeConverter classes
11 + associated with the data types.
12 +
13 + Example:
14 +
15 + ... ado.net/XML headers & schema ...
16 + <resheader name="resmimetype">text/microsoft-resx</resheader>
17 + <resheader name="version">2.0</resheader>
18 + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19 + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20 + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21 + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22 + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23 + <value>[base64 mime encoded serialized .NET Framework object]</value>
24 + </data>
25 + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26 + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27 + <comment>This is a comment</comment>
28 + </data>
29 +
30 + There are any number of "resheader" rows that contain simple
31 + name/value pairs.
32 +
33 + Each data row contains a name, and value. The row also contains a
34 + type or mimetype. Type corresponds to a .NET class that support
35 + text/value conversion through the TypeConverter architecture.
36 + Classes that don't support this are serialized and stored with the
37 + mimetype set.
38 +
39 + The mimetype is used for serialized objects, and tells the
40 + ResXResourceReader how to depersist the object. This is currently not
41 + extensible. For a given mimetype the value must be set accordingly:
42 +
43 + Note - application/x-microsoft.net.object.binary.base64 is the format
44 + that the ResXResourceWriter will generate, however the reader can
45 + read any of the formats listed below.
46 +
47 + mimetype: application/x-microsoft.net.object.binary.base64
48 + value : The object must be serialized with
49 + : System.Serialization.Formatters.Binary.BinaryFormatter
50 + : and then encoded with base64 encoding.
51 +
52 + mimetype: application/x-microsoft.net.object.soap.base64
53 + value : The object must be serialized with
54 + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55 + : and then encoded with base64 encoding.
56 +
57 + mimetype: application/x-microsoft.net.object.bytearray.base64
58 + value : The object must be serialized into a byte array
59 + : using a System.ComponentModel.TypeConverter
60 + : and then encoded with base64 encoding.
61 + -->
62 + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63 + <xsd:element name="root" msdata:IsDataSet="true">
64 + <xsd:complexType>
65 + <xsd:choice maxOccurs="unbounded">
66 + <xsd:element name="metadata">
67 + <xsd:complexType>
68 + <xsd:sequence>
69 + <xsd:element name="value" type="xsd:string" minOccurs="0" />
70 + </xsd:sequence>
71 + <xsd:attribute name="name" type="xsd:string" />
72 + <xsd:attribute name="type" type="xsd:string" />
73 + <xsd:attribute name="mimetype" type="xsd:string" />
74 + </xsd:complexType>
75 + </xsd:element>
76 + <xsd:element name="assembly">
77 + <xsd:complexType>
78 + <xsd:attribute name="alias" type="xsd:string" />
79 + <xsd:attribute name="name" type="xsd:string" />
80 + </xsd:complexType>
81 + </xsd:element>
82 + <xsd:element name="data">
83 + <xsd:complexType>
84 + <xsd:sequence>
85 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
86 + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
87 + </xsd:sequence>
88 + <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
89 + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
90 + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
91 + </xsd:complexType>
92 + </xsd:element>
93 + <xsd:element name="resheader">
94 + <xsd:complexType>
95 + <xsd:sequence>
96 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
97 + </xsd:sequence>
98 + <xsd:attribute name="name" type="xsd:string" use="required" />
99 + </xsd:complexType>
100 + </xsd:element>
101 + </xsd:choice>
102 + </xsd:complexType>
103 + </xsd:element>
104 + </xsd:schema>
105 + <resheader name="resmimetype">
106 + <value>text/microsoft-resx</value>
107 + </resheader>
108 + <resheader name="version">
109 + <value>2.0</value>
110 + </resheader>
111 + <resheader name="reader">
112 + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
113 + </resheader>
114 + <resheader name="writer">
115 + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116 + </resheader>
117 +</root>
...\ No newline at end of file ...\ No newline at end of file
1 +//------------------------------------------------------------------------------
2 +// <auto-generated>
3 +// This code was generated by a tool.
4 +// Runtime Version:4.0.30319.42000
5 +//
6 +// Changes to this file may cause incorrect behavior and will be lost if
7 +// the code is regenerated.
8 +// </auto-generated>
9 +//------------------------------------------------------------------------------
10 +
11 +namespace oneTouch.Properties
12 +{
13 +
14 +
15 + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
16 + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
17 + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
18 + {
19 +
20 + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
21 +
22 + public static Settings Default
23 + {
24 + get
25 + {
26 + return defaultInstance;
27 + }
28 + }
29 + }
30 +}
1 +<?xml version='1.0' encoding='utf-8'?>
2 +<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
3 + <Profiles>
4 + <Profile Name="(Default)" />
5 + </Profiles>
6 + <Settings />
7 +</SettingsFile>
No preview for this file type
1 +<?xml version="1.0" encoding="utf-8" ?>
2 +<configuration>
3 + <startup>
4 + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5 + </startup>
6 +</configuration>
...\ No newline at end of file ...\ No newline at end of file
No preview for this file type
No preview for this file type
1 +namespace oneTouch
2 +{
3 + partial class mewant
4 + {
5 + /// <summary>
6 + /// Required designer variable.
7 + /// </summary>
8 + private System.ComponentModel.IContainer components = null;
9 +
10 + /// <summary>
11 + /// Clean up any resources being used.
12 + /// </summary>
13 + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 + protected override void Dispose(bool disposing)
15 + {
16 + if (disposing && (components != null))
17 + {
18 + components.Dispose();
19 + }
20 + base.Dispose(disposing);
21 + }
22 +
23 + #region Windows Form Designer generated code
24 +
25 + /// <summary>
26 + /// Required method for Designer support - do not modify
27 + /// the contents of this method with the code editor.
28 + /// </summary>
29 + private void InitializeComponent()
30 + {
31 + this.components = new System.ComponentModel.Container();
32 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
33 + this.Text = "mewant";
34 + }
35 +
36 + #endregion
37 + }
38 +}
...\ No newline at end of file ...\ No newline at end of file
1 +using System;
2 +using System.Collections.Generic;
3 +using System.ComponentModel;
4 +using System.Data;
5 +using System.Drawing;
6 +using System.Linq;
7 +using System.Text;
8 +using System.Threading.Tasks;
9 +using System.Windows.Forms;
10 +
11 +namespace oneTouch
12 +{
13 + public partial class mewant : Form
14 + {
15 + public mewant()
16 + {
17 + InitializeComponent();
18 + }
19 + }
20 +}
1 +C:\Users\0067\source\repos\oneTouch\oneTouch\bin\Debug\oneTouch.exe.config
2 +C:\Users\0067\source\repos\oneTouch\oneTouch\bin\Debug\oneTouch.exe
3 +C:\Users\0067\source\repos\oneTouch\oneTouch\bin\Debug\oneTouch.pdb
4 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.csprojResolveAssemblyReference.cache
5 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.Create.resources
6 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch._main.resources
7 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.Properties.Resources.resources
8 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.csproj.GenerateResource.Cache
9 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.csproj.CoreCompileInputs.cache
10 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.exe
11 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.pdb
12 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.Client.resources
13 +C:\Users\0067\source\repos\oneTouch\oneTouch\obj\Debug\oneTouch.want.resources
No preview for this file type
No preview for this file type
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4 + <PropertyGroup>
5 + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 + <ProjectGuid>{75A79E64-7235-46E2-87A6-59DD38F86F97}</ProjectGuid>
8 + <OutputType>WinExe</OutputType>
9 + <RootNamespace>oneTouch</RootNamespace>
10 + <AssemblyName>oneTouch</AssemblyName>
11 + <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12 + <FileAlignment>512</FileAlignment>
13 + <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14 + </PropertyGroup>
15 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16 + <PlatformTarget>AnyCPU</PlatformTarget>
17 + <DebugSymbols>true</DebugSymbols>
18 + <DebugType>full</DebugType>
19 + <Optimize>false</Optimize>
20 + <OutputPath>bin\Debug\</OutputPath>
21 + <DefineConstants>DEBUG;TRACE</DefineConstants>
22 + <ErrorReport>prompt</ErrorReport>
23 + <WarningLevel>4</WarningLevel>
24 + </PropertyGroup>
25 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26 + <PlatformTarget>AnyCPU</PlatformTarget>
27 + <DebugType>pdbonly</DebugType>
28 + <Optimize>true</Optimize>
29 + <OutputPath>bin\Release\</OutputPath>
30 + <DefineConstants>TRACE</DefineConstants>
31 + <ErrorReport>prompt</ErrorReport>
32 + <WarningLevel>4</WarningLevel>
33 + </PropertyGroup>
34 + <ItemGroup>
35 + <Reference Include="System" />
36 + <Reference Include="System.Core" />
37 + <Reference Include="System.Xml.Linq" />
38 + <Reference Include="System.Data.DataSetExtensions" />
39 + <Reference Include="Microsoft.CSharp" />
40 + <Reference Include="System.Data" />
41 + <Reference Include="System.Deployment" />
42 + <Reference Include="System.Drawing" />
43 + <Reference Include="System.Net.Http" />
44 + <Reference Include="System.Windows.Forms" />
45 + <Reference Include="System.Xml" />
46 + </ItemGroup>
47 + <ItemGroup>
48 + <Compile Include="Client.cs">
49 + <SubType>Form</SubType>
50 + </Compile>
51 + <Compile Include="Client.Designer.cs">
52 + <DependentUpon>Client.cs</DependentUpon>
53 + </Compile>
54 + <Compile Include="Create.cs">
55 + <SubType>Form</SubType>
56 + </Compile>
57 + <Compile Include="Create.Designer.cs">
58 + <DependentUpon>Create.cs</DependentUpon>
59 + </Compile>
60 + <Compile Include="Form1.cs">
61 + <SubType>Form</SubType>
62 + </Compile>
63 + <Compile Include="Form1.Designer.cs">
64 + <DependentUpon>Form1.cs</DependentUpon>
65 + </Compile>
66 + <Compile Include="mewant.cs">
67 + <SubType>Form</SubType>
68 + </Compile>
69 + <Compile Include="mewant.Designer.cs">
70 + <DependentUpon>mewant.cs</DependentUpon>
71 + </Compile>
72 + <Compile Include="Program.cs" />
73 + <Compile Include="Properties\AssemblyInfo.cs" />
74 + <Compile Include="want.cs">
75 + <SubType>Form</SubType>
76 + </Compile>
77 + <Compile Include="want.Designer.cs">
78 + <DependentUpon>want.cs</DependentUpon>
79 + </Compile>
80 + <EmbeddedResource Include="Client.resx">
81 + <DependentUpon>Client.cs</DependentUpon>
82 + </EmbeddedResource>
83 + <EmbeddedResource Include="Create.resx">
84 + <DependentUpon>Create.cs</DependentUpon>
85 + </EmbeddedResource>
86 + <EmbeddedResource Include="Form1.resx">
87 + <DependentUpon>Form1.cs</DependentUpon>
88 + </EmbeddedResource>
89 + <EmbeddedResource Include="Properties\Resources.resx">
90 + <Generator>ResXFileCodeGenerator</Generator>
91 + <LastGenOutput>Resources.Designer.cs</LastGenOutput>
92 + <SubType>Designer</SubType>
93 + </EmbeddedResource>
94 + <Compile Include="Properties\Resources.Designer.cs">
95 + <AutoGen>True</AutoGen>
96 + <DependentUpon>Resources.resx</DependentUpon>
97 + </Compile>
98 + <EmbeddedResource Include="want.resx">
99 + <DependentUpon>want.cs</DependentUpon>
100 + </EmbeddedResource>
101 + <None Include="Properties\Settings.settings">
102 + <Generator>SettingsSingleFileGenerator</Generator>
103 + <LastGenOutput>Settings.Designer.cs</LastGenOutput>
104 + </None>
105 + <Compile Include="Properties\Settings.Designer.cs">
106 + <AutoGen>True</AutoGen>
107 + <DependentUpon>Settings.settings</DependentUpon>
108 + <DesignTimeSharedInput>True</DesignTimeSharedInput>
109 + </Compile>
110 + </ItemGroup>
111 + <ItemGroup>
112 + <None Include="App.config" />
113 + </ItemGroup>
114 + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
115 +</Project>
...\ No newline at end of file ...\ No newline at end of file
1 +namespace oneTouch
2 +{
3 + partial class want
4 + {
5 + /// <summary>
6 + /// Required designer variable.
7 + /// </summary>
8 + private System.ComponentModel.IContainer components = null;
9 +
10 + /// <summary>
11 + /// Clean up any resources being used.
12 + /// </summary>
13 + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 + protected override void Dispose(bool disposing)
15 + {
16 + if (disposing && (components != null))
17 + {
18 + components.Dispose();
19 + }
20 + base.Dispose(disposing);
21 + }
22 +
23 + #region Windows Form Designer generated code
24 +
25 + /// <summary>
26 + /// Required method for Designer support - do not modify
27 + /// the contents of this method with the code editor.
28 + /// </summary>
29 + private void InitializeComponent()
30 + {
31 + this.label1 = new System.Windows.Forms.Label();
32 + this.checkBox1 = new System.Windows.Forms.CheckBox();
33 + this.checkBox2 = new System.Windows.Forms.CheckBox();
34 + this.checkBox3 = new System.Windows.Forms.CheckBox();
35 + this.checkBox4 = new System.Windows.Forms.CheckBox();
36 + this.checkBox5 = new System.Windows.Forms.CheckBox();
37 + this.checkBox6 = new System.Windows.Forms.CheckBox();
38 + this.checkBox7 = new System.Windows.Forms.CheckBox();
39 + this.checkBox8 = new System.Windows.Forms.CheckBox();
40 + this.label2 = new System.Windows.Forms.Label();
41 + this.SuspendLayout();
42 + //
43 + // label1
44 + //
45 + this.label1.AutoSize = true;
46 + this.label1.Location = new System.Drawing.Point(28, 35);
47 + this.label1.Name = "label1";
48 + this.label1.Size = new System.Drawing.Size(37, 15);
49 + this.label1.TabIndex = 0;
50 + this.label1.Text = "성격";
51 + //
52 + // checkBox1
53 + //
54 + this.checkBox1.AutoSize = true;
55 + this.checkBox1.Location = new System.Drawing.Point(75, 67);
56 + this.checkBox1.Name = "checkBox1";
57 + this.checkBox1.Size = new System.Drawing.Size(32, 19);
58 + this.checkBox1.TabIndex = 1;
59 + this.checkBox1.Text = "I";
60 + this.checkBox1.UseVisualStyleBackColor = true;
61 + //
62 + // checkBox2
63 + //
64 + this.checkBox2.AutoSize = true;
65 + this.checkBox2.Location = new System.Drawing.Point(113, 67);
66 + this.checkBox2.Name = "checkBox2";
67 + this.checkBox2.Size = new System.Drawing.Size(38, 19);
68 + this.checkBox2.TabIndex = 2;
69 + this.checkBox2.Text = "E";
70 + this.checkBox2.UseVisualStyleBackColor = true;
71 + //
72 + // checkBox3
73 + //
74 + this.checkBox3.AutoSize = true;
75 + this.checkBox3.Location = new System.Drawing.Point(222, 67);
76 + this.checkBox3.Name = "checkBox3";
77 + this.checkBox3.Size = new System.Drawing.Size(39, 19);
78 + this.checkBox3.TabIndex = 3;
79 + this.checkBox3.Text = "S";
80 + this.checkBox3.UseVisualStyleBackColor = true;
81 + //
82 + // checkBox4
83 + //
84 + this.checkBox4.AutoSize = true;
85 + this.checkBox4.Location = new System.Drawing.Point(267, 67);
86 + this.checkBox4.Name = "checkBox4";
87 + this.checkBox4.Size = new System.Drawing.Size(38, 19);
88 + this.checkBox4.TabIndex = 4;
89 + this.checkBox4.Text = "N";
90 + this.checkBox4.UseVisualStyleBackColor = true;
91 + //
92 + // checkBox5
93 + //
94 + this.checkBox5.AutoSize = true;
95 + this.checkBox5.Location = new System.Drawing.Point(267, 92);
96 + this.checkBox5.Name = "checkBox5";
97 + this.checkBox5.Size = new System.Drawing.Size(39, 19);
98 + this.checkBox5.TabIndex = 8;
99 + this.checkBox5.Text = "B";
100 + this.checkBox5.UseVisualStyleBackColor = true;
101 + //
102 + // checkBox6
103 + //
104 + this.checkBox6.AutoSize = true;
105 + this.checkBox6.Location = new System.Drawing.Point(222, 92);
106 + this.checkBox6.Name = "checkBox6";
107 + this.checkBox6.Size = new System.Drawing.Size(35, 19);
108 + this.checkBox6.TabIndex = 7;
109 + this.checkBox6.Text = "J";
110 + this.checkBox6.UseVisualStyleBackColor = true;
111 + //
112 + // checkBox7
113 + //
114 + this.checkBox7.AutoSize = true;
115 + this.checkBox7.Location = new System.Drawing.Point(113, 92);
116 + this.checkBox7.Name = "checkBox7";
117 + this.checkBox7.Size = new System.Drawing.Size(37, 19);
118 + this.checkBox7.TabIndex = 6;
119 + this.checkBox7.Text = "F";
120 + this.checkBox7.UseVisualStyleBackColor = true;
121 + //
122 + // checkBox8
123 + //
124 + this.checkBox8.AutoSize = true;
125 + this.checkBox8.Location = new System.Drawing.Point(75, 92);
126 + this.checkBox8.Name = "checkBox8";
127 + this.checkBox8.Size = new System.Drawing.Size(37, 19);
128 + this.checkBox8.TabIndex = 5;
129 + this.checkBox8.Text = "T";
130 + this.checkBox8.UseVisualStyleBackColor = true;
131 + //
132 + // label2
133 + //
134 + this.label2.AutoSize = true;
135 + this.label2.Location = new System.Drawing.Point(28, 140);
136 + this.label2.Name = "label2";
137 + this.label2.Size = new System.Drawing.Size(67, 15);
138 + this.label2.TabIndex = 9;
139 + this.label2.Text = "생활패턴";
140 + //
141 + // want
142 + //
143 + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
144 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
145 + this.ClientSize = new System.Drawing.Size(451, 425);
146 + this.Controls.Add(this.label2);
147 + this.Controls.Add(this.checkBox5);
148 + this.Controls.Add(this.checkBox6);
149 + this.Controls.Add(this.checkBox7);
150 + this.Controls.Add(this.checkBox8);
151 + this.Controls.Add(this.checkBox4);
152 + this.Controls.Add(this.checkBox3);
153 + this.Controls.Add(this.checkBox2);
154 + this.Controls.Add(this.checkBox1);
155 + this.Controls.Add(this.label1);
156 + this.Name = "want";
157 + this.Text = "나의 정보 입력";
158 + this.ResumeLayout(false);
159 + this.PerformLayout();
160 +
161 + }
162 +
163 + #endregion
164 +
165 + private System.Windows.Forms.Label label1;
166 + private System.Windows.Forms.CheckBox checkBox1;
167 + private System.Windows.Forms.CheckBox checkBox2;
168 + private System.Windows.Forms.CheckBox checkBox3;
169 + private System.Windows.Forms.CheckBox checkBox4;
170 + private System.Windows.Forms.CheckBox checkBox5;
171 + private System.Windows.Forms.CheckBox checkBox6;
172 + private System.Windows.Forms.CheckBox checkBox7;
173 + private System.Windows.Forms.CheckBox checkBox8;
174 + private System.Windows.Forms.Label label2;
175 + }
176 +}
...\ No newline at end of file ...\ No newline at end of file
1 +using System;
2 +using System.Collections.Generic;
3 +using System.ComponentModel;
4 +using System.Data;
5 +using System.Drawing;
6 +using System.Linq;
7 +using System.Text;
8 +using System.Threading.Tasks;
9 +using System.Windows.Forms;
10 +
11 +namespace oneTouch
12 +{
13 + public partial class want : Form
14 + {
15 + public want()
16 + {
17 + InitializeComponent();
18 + }
19 +
20 + private void checkBox9_CheckedChanged(object sender, EventArgs e)
21 + {
22 +
23 + }
24 + }
25 +}
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<root>
3 + <!--
4 + Microsoft ResX Schema
5 +
6 + Version 2.0
7 +
8 + The primary goals of this format is to allow a simple XML format
9 + that is mostly human readable. The generation and parsing of the
10 + various data types are done through the TypeConverter classes
11 + associated with the data types.
12 +
13 + Example:
14 +
15 + ... ado.net/XML headers & schema ...
16 + <resheader name="resmimetype">text/microsoft-resx</resheader>
17 + <resheader name="version">2.0</resheader>
18 + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19 + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20 + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21 + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22 + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23 + <value>[base64 mime encoded serialized .NET Framework object]</value>
24 + </data>
25 + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26 + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27 + <comment>This is a comment</comment>
28 + </data>
29 +
30 + There are any number of "resheader" rows that contain simple
31 + name/value pairs.
32 +
33 + Each data row contains a name, and value. The row also contains a
34 + type or mimetype. Type corresponds to a .NET class that support
35 + text/value conversion through the TypeConverter architecture.
36 + Classes that don't support this are serialized and stored with the
37 + mimetype set.
38 +
39 + The mimetype is used for serialized objects, and tells the
40 + ResXResourceReader how to depersist the object. This is currently not
41 + extensible. For a given mimetype the value must be set accordingly:
42 +
43 + Note - application/x-microsoft.net.object.binary.base64 is the format
44 + that the ResXResourceWriter will generate, however the reader can
45 + read any of the formats listed below.
46 +
47 + mimetype: application/x-microsoft.net.object.binary.base64
48 + value : The object must be serialized with
49 + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50 + : and then encoded with base64 encoding.
51 +
52 + mimetype: application/x-microsoft.net.object.soap.base64
53 + value : The object must be serialized with
54 + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55 + : and then encoded with base64 encoding.
56 +
57 + mimetype: application/x-microsoft.net.object.bytearray.base64
58 + value : The object must be serialized into a byte array
59 + : using a System.ComponentModel.TypeConverter
60 + : and then encoded with base64 encoding.
61 + -->
62 + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63 + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64 + <xsd:element name="root" msdata:IsDataSet="true">
65 + <xsd:complexType>
66 + <xsd:choice maxOccurs="unbounded">
67 + <xsd:element name="metadata">
68 + <xsd:complexType>
69 + <xsd:sequence>
70 + <xsd:element name="value" type="xsd:string" minOccurs="0" />
71 + </xsd:sequence>
72 + <xsd:attribute name="name" use="required" type="xsd:string" />
73 + <xsd:attribute name="type" type="xsd:string" />
74 + <xsd:attribute name="mimetype" type="xsd:string" />
75 + <xsd:attribute ref="xml:space" />
76 + </xsd:complexType>
77 + </xsd:element>
78 + <xsd:element name="assembly">
79 + <xsd:complexType>
80 + <xsd:attribute name="alias" type="xsd:string" />
81 + <xsd:attribute name="name" type="xsd:string" />
82 + </xsd:complexType>
83 + </xsd:element>
84 + <xsd:element name="data">
85 + <xsd:complexType>
86 + <xsd:sequence>
87 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88 + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89 + </xsd:sequence>
90 + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91 + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92 + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93 + <xsd:attribute ref="xml:space" />
94 + </xsd:complexType>
95 + </xsd:element>
96 + <xsd:element name="resheader">
97 + <xsd:complexType>
98 + <xsd:sequence>
99 + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100 + </xsd:sequence>
101 + <xsd:attribute name="name" type="xsd:string" use="required" />
102 + </xsd:complexType>
103 + </xsd:element>
104 + </xsd:choice>
105 + </xsd:complexType>
106 + </xsd:element>
107 + </xsd:schema>
108 + <resheader name="resmimetype">
109 + <value>text/microsoft-resx</value>
110 + </resheader>
111 + <resheader name="version">
112 + <value>2.0</value>
113 + </resheader>
114 + <resheader name="reader">
115 + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116 + </resheader>
117 + <resheader name="writer">
118 + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119 + </resheader>
120 +</root>
...\ No newline at end of file ...\ No newline at end of file