-
Notifications
You must be signed in to change notification settings - Fork 2
/
frmMessage.Designer.cs
109 lines (103 loc) · 4.69 KB
/
frmMessage.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
namespace LolChatWin
{
partial class frmMessage
{
/// <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.txtLog = new System.Windows.Forms.TextBox();
this.pnlSpeak = new System.Windows.Forms.Panel();
this.txtMessage = new System.Windows.Forms.TextBox();
this.btnSend = new System.Windows.Forms.Button();
this.pnlSpeak.SuspendLayout();
this.SuspendLayout();
//
// txtLog
//
this.txtLog.BackColor = System.Drawing.SystemColors.Window;
this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtLog.Location = new System.Drawing.Point(0, 0);
this.txtLog.Multiline = true;
this.txtLog.Name = "txtLog";
this.txtLog.ReadOnly = true;
this.txtLog.Size = new System.Drawing.Size(284, 237);
this.txtLog.TabIndex = 1;
this.txtLog.TabStop = false;
//
// pnlSpeak
//
this.pnlSpeak.Controls.Add(this.txtMessage);
this.pnlSpeak.Controls.Add(this.btnSend);
this.pnlSpeak.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlSpeak.Location = new System.Drawing.Point(0, 237);
this.pnlSpeak.Name = "pnlSpeak";
this.pnlSpeak.Size = new System.Drawing.Size(284, 25);
this.pnlSpeak.TabIndex = 2;
//
// txtMessage
//
this.txtMessage.BackColor = System.Drawing.SystemColors.Info;
this.txtMessage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtMessage.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
this.txtMessage.Location = new System.Drawing.Point(0, 0);
this.txtMessage.Name = "txtMessage";
this.txtMessage.Size = new System.Drawing.Size(238, 24);
this.txtMessage.TabIndex = 4;
this.txtMessage.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMessage_KeyPress);
//
// btnSend
//
this.btnSend.Dock = System.Windows.Forms.DockStyle.Right;
this.btnSend.Location = new System.Drawing.Point(238, 0);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(46, 25);
this.btnSend.TabIndex = 3;
this.btnSend.Text = "Send";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// frmMessage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.txtLog);
this.Controls.Add(this.pnlSpeak);
this.Name = "frmMessage";
this.Text = "frmMessage";
this.Activated += new System.EventHandler(this.frmMessage_Activated);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMessage_FormClosed);
this.Load += new System.EventHandler(this.frmMessage_Load);
this.pnlSpeak.ResumeLayout(false);
this.pnlSpeak.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtLog;
private System.Windows.Forms.Panel pnlSpeak;
private System.Windows.Forms.TextBox txtMessage;
private System.Windows.Forms.Button btnSend;
}
}