102 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Project.Dialog
 | |
| {
 | |
|     partial class fChat
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Required designer variable.
 | |
|         /// </summary>
 | |
|         private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Clean up any resources being used.
 | |
|         /// </summary>
 | |
|         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
|         protected override void Dispose(bool disposing)
 | |
|         {
 | |
|             if (disposing && (components != null))
 | |
|             {
 | |
|                 components.Dispose();
 | |
|             }
 | |
|             base.Dispose(disposing);
 | |
|         }
 | |
| 
 | |
|         #region Windows Form Designer generated code
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Required method for Designer support - do not modify
 | |
|         /// the contents of this method with the code editor.
 | |
|         /// </summary>
 | |
|         private void InitializeComponent()
 | |
|         {
 | |
|             this.panel4 = new System.Windows.Forms.Panel();
 | |
|             this.tbMsg = new System.Windows.Forms.TextBox();
 | |
|             this.btnSend = new System.Windows.Forms.Button();
 | |
|             this.richTextBox1 = new System.Windows.Forms.RichTextBox();
 | |
|             this.panel4.SuspendLayout();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // panel4
 | |
|             // 
 | |
|             this.panel4.Controls.Add(this.tbMsg);
 | |
|             this.panel4.Controls.Add(this.btnSend);
 | |
|             this.panel4.Dock = System.Windows.Forms.DockStyle.Bottom;
 | |
|             this.panel4.Location = new System.Drawing.Point(0, 500);
 | |
|             this.panel4.Name = "panel4";
 | |
|             this.panel4.Padding = new System.Windows.Forms.Padding(5);
 | |
|             this.panel4.Size = new System.Drawing.Size(444, 40);
 | |
|             this.panel4.TabIndex = 0;
 | |
|             // 
 | |
|             // tbMsg
 | |
|             // 
 | |
|             this.tbMsg.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.tbMsg.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.tbMsg.Location = new System.Drawing.Point(5, 5);
 | |
|             this.tbMsg.Name = "tbMsg";
 | |
|             this.tbMsg.Size = new System.Drawing.Size(335, 29);
 | |
|             this.tbMsg.TabIndex = 0;
 | |
|             // 
 | |
|             // btnSend
 | |
|             // 
 | |
|             this.btnSend.Dock = System.Windows.Forms.DockStyle.Right;
 | |
|             this.btnSend.Location = new System.Drawing.Point(340, 5);
 | |
|             this.btnSend.Name = "btnSend";
 | |
|             this.btnSend.Size = new System.Drawing.Size(99, 30);
 | |
|             this.btnSend.TabIndex = 1;
 | |
|             this.btnSend.Text = "전송";
 | |
|             this.btnSend.UseVisualStyleBackColor = true;
 | |
|             // 
 | |
|             // richTextBox1
 | |
|             // 
 | |
|             this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.richTextBox1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.richTextBox1.Name = "richTextBox1";
 | |
|             this.richTextBox1.ReadOnly = true;
 | |
|             this.richTextBox1.Size = new System.Drawing.Size(444, 500);
 | |
|             this.richTextBox1.TabIndex = 1;
 | |
|             this.richTextBox1.TabStop = false;
 | |
|             this.richTextBox1.Text = "";
 | |
|             // 
 | |
|             // fChat
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(444, 540);
 | |
|             this.Controls.Add(this.richTextBox1);
 | |
|             this.Controls.Add(this.panel4);
 | |
|             this.Name = "fChat";
 | |
|             this.Text = "fChat";
 | |
|             this.Load += new System.EventHandler(this.fChat_Load);
 | |
|             this.panel4.ResumeLayout(false);
 | |
|             this.panel4.PerformLayout();
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.Panel panel4;
 | |
|         private System.Windows.Forms.TextBox tbMsg;
 | |
|         private System.Windows.Forms.Button btnSend;
 | |
|         private System.Windows.Forms.RichTextBox richTextBox1;
 | |
|     }
 | |
| } | 
