-
Notifications
You must be signed in to change notification settings - Fork 1
/
iMess.Designer.cs
111 lines (104 loc) · 4.41 KB
/
iMess.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
110
namespace iMessV2
{
partial class iMess
{
/// <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.rtbChatLog = new System.Windows.Forms.RichTextBox();
this.rtbMessage = new System.Windows.Forms.RichTextBox();
this.btnSend = new System.Windows.Forms.Button();
this.lblFont = new System.Windows.Forms.Label();
this.lblColor = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// rtbChatLog
//
this.rtbChatLog.Location = new System.Drawing.Point(12, 12);
this.rtbChatLog.Name = "rtbChatLog";
this.rtbChatLog.ReadOnly = true;
this.rtbChatLog.Size = new System.Drawing.Size(330, 245);
this.rtbChatLog.TabIndex = 0;
this.rtbChatLog.Text = "";
//
// rtbMessage
//
this.rtbMessage.Location = new System.Drawing.Point(12, 268);
this.rtbMessage.Name = "rtbMessage";
this.rtbMessage.Size = new System.Drawing.Size(330, 62);
this.rtbMessage.TabIndex = 0;
this.rtbMessage.Text = "";
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(361, 291);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(94, 39);
this.btnSend.TabIndex = 1;
this.btnSend.Text = "Send";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// lblFont
//
this.lblFont.AutoSize = true;
this.lblFont.Font = new System.Drawing.Font("Modern No. 20", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblFont.Location = new System.Drawing.Point(378, 42);
this.lblFont.Name = "lblFont";
this.lblFont.Size = new System.Drawing.Size(36, 15);
this.lblFont.TabIndex = 2;
this.lblFont.Text = "Font";
//
// lblColor
//
this.lblColor.AutoSize = true;
this.lblColor.Font = new System.Drawing.Font("Modern No. 20", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
this.lblColor.Location = new System.Drawing.Point(378, 79);
this.lblColor.Name = "lblColor";
this.lblColor.Size = new System.Drawing.Size(40, 15);
this.lblColor.TabIndex = 2;
this.lblColor.Text = "Color";
//
// iMess
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(467, 342);
this.Controls.Add(this.lblColor);
this.Controls.Add(this.lblFont);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.rtbMessage);
this.Controls.Add(this.rtbChatLog);
this.Name = "iMess";
this.Text = "iMess";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox rtbChatLog;
private System.Windows.Forms.RichTextBox rtbMessage;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.Label lblFont;
private System.Windows.Forms.Label lblColor;
}
}