계좌 선택 기능 추가

This commit is contained in:
2016-12-20 09:16:28 +09:00
parent 034c061a1b
commit a93faf9eb5
7 changed files with 156 additions and 29 deletions

View File

@@ -30,12 +30,13 @@
{
this.btnYes = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.tbMsg = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// btnYes
//
this.btnYes.Location = new System.Drawing.Point(123, 67);
this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnYes.Location = new System.Drawing.Point(164, 118);
this.btnYes.Name = "btnYes";
this.btnYes.Size = new System.Drawing.Size(75, 23);
this.btnYes.TabIndex = 0;
@@ -45,7 +46,8 @@
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(204, 67);
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.Location = new System.Drawing.Point(245, 118);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 1;
@@ -53,21 +55,22 @@
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// label1
// tbMsg
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 12);
this.label1.TabIndex = 2;
this.label1.Text = "label1";
this.tbMsg.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tbMsg.Location = new System.Drawing.Point(12, 12);
this.tbMsg.Multiline = true;
this.tbMsg.Name = "tbMsg";
this.tbMsg.ReadOnly = true;
this.tbMsg.Size = new System.Drawing.Size(308, 100);
this.tbMsg.TabIndex = 3;
//
// ModelessPopup
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(291, 102);
this.Controls.Add(this.label1);
this.ClientSize = new System.Drawing.Size(332, 153);
this.Controls.Add(this.tbMsg);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnYes);
this.Name = "ModelessPopup";
@@ -81,6 +84,6 @@
private System.Windows.Forms.Button btnYes;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tbMsg;
}
}