Loading...
Searching...
No Matches
Form1.Designer.cs
2{
3 partial class Form1
4 {
8 private System.ComponentModel.IContainer components = null;
9
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
29 private void InitializeComponent()
30 {
31 this.richTextBox1 = new System.Windows.Forms.RichTextBox();
32 this.label1 = new System.Windows.Forms.Label();
33 this.splitContainer1 = new System.Windows.Forms.SplitContainer();
34 this.splitContainer2 = new System.Windows.Forms.SplitContainer();
35 this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
36 this.button2 = new System.Windows.Forms.Button();
37 this.button1 = new System.Windows.Forms.Button();
38 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
39 this.splitContainer1.Panel1.SuspendLayout();
40 this.splitContainer1.Panel2.SuspendLayout();
41 this.splitContainer1.SuspendLayout();
42 ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
43 this.splitContainer2.Panel1.SuspendLayout();
44 this.splitContainer2.Panel2.SuspendLayout();
45 this.splitContainer2.SuspendLayout();
46 this.flowLayoutPanel1.SuspendLayout();
47 this.SuspendLayout();
48 //
49 // richTextBox1
50 //
51 this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
52 this.richTextBox1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
53 this.richTextBox1.Location = new System.Drawing.Point(3, 0);
54 this.richTextBox1.Name = "richTextBox1";
55 this.richTextBox1.Size = new System.Drawing.Size(586, 292);
56 this.richTextBox1.TabIndex = 0;
57 this.richTextBox1.Text = "";
58 //
59 // label1
60 //
61 this.label1.AutoSize = true;
62 this.label1.Location = new System.Drawing.Point(1, 9);
63 this.label1.Name = "label1";
64 this.label1.Size = new System.Drawing.Size(107, 13);
65 this.label1.TabIndex = 1;
66 this.label1.Text = "Received Messages:";
67 //
68 // splitContainer1
69 //
70 this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
71 this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
72 this.splitContainer1.IsSplitterFixed = true;
73 this.splitContainer1.Location = new System.Drawing.Point(0, 0);
74 this.splitContainer1.Name = "splitContainer1";
75 this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
76 //
77 // splitContainer1.Panel1
78 //
79 this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
80 //
81 // splitContainer1.Panel2
82 //
83 this.splitContainer1.Panel2.Controls.Add(this.flowLayoutPanel1);
84 this.splitContainer1.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
85 this.splitContainer1.Size = new System.Drawing.Size(592, 365);
86 this.splitContainer1.SplitterDistance = 322;
87 this.splitContainer1.TabIndex = 4;
88 //
89 // splitContainer2
90 //
91 this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
92 this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
93 this.splitContainer2.IsSplitterFixed = true;
94 this.splitContainer2.Location = new System.Drawing.Point(0, 0);
95 this.splitContainer2.Name = "splitContainer2";
96 this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
97 //
98 // splitContainer2.Panel1
99 //
100 this.splitContainer2.Panel1.Controls.Add(this.label1);
101 //
102 // splitContainer2.Panel2
103 //
104 this.splitContainer2.Panel2.Controls.Add(this.richTextBox1);
105 this.splitContainer2.Panel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
106 this.splitContainer2.Size = new System.Drawing.Size(592, 322);
107 this.splitContainer2.SplitterDistance = 26;
108 this.splitContainer2.TabIndex = 2;
109 //
110 // flowLayoutPanel1
111 //
112 this.flowLayoutPanel1.Controls.Add(this.button2);
113 this.flowLayoutPanel1.Controls.Add(this.button1);
114 this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
115 this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
116 this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
117 this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
118 this.flowLayoutPanel1.Name = "flowLayoutPanel1";
119 this.flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
120 this.flowLayoutPanel1.Size = new System.Drawing.Size(592, 39);
121 this.flowLayoutPanel1.TabIndex = 6;
122 //
123 // button2
124 //
125 this.button2.Location = new System.Drawing.Point(451, 3);
126 this.button2.Name = "button2";
127 this.button2.Size = new System.Drawing.Size(138, 33);
128 this.button2.TabIndex = 5;
129 this.button2.Text = "Save As ...";
130 this.button2.UseVisualStyleBackColor = true;
131 this.button2.Click += new System.EventHandler(this.button2_Click);
132 //
133 // button1
134 //
135 this.button1.Location = new System.Drawing.Point(307, 3);
136 this.button1.Name = "button1";
137 this.button1.Size = new System.Drawing.Size(138, 33);
138 this.button1.TabIndex = 4;
139 this.button1.Text = "Copy To Clipboard";
140 this.button1.UseVisualStyleBackColor = true;
141 this.button1.Click += new System.EventHandler(this.button1_Click);
142 //
143 // Form1
144 //
145 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
146 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
147 this.ClientSize = new System.Drawing.Size(592, 365);
148 this.Controls.Add(this.splitContainer1);
149 this.Name = "Form1";
150 this.Text = "Form1";
151 this.splitContainer1.Panel1.ResumeLayout(false);
152 this.splitContainer1.Panel2.ResumeLayout(false);
153 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
154 this.splitContainer1.ResumeLayout(false);
155 this.splitContainer2.Panel1.ResumeLayout(false);
156 this.splitContainer2.Panel1.PerformLayout();
157 this.splitContainer2.Panel2.ResumeLayout(false);
158 ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
159 this.splitContainer2.ResumeLayout(false);
160 this.flowLayoutPanel1.ResumeLayout(false);
161 this.ResumeLayout(false);
162
163 }
164
165 #endregion
166
167 private System.Windows.Forms.RichTextBox richTextBox1;
168 private System.Windows.Forms.Label label1;
169 private System.Windows.Forms.SplitContainer splitContainer1;
170 private System.Windows.Forms.SplitContainer splitContainer2;
171 private System.Windows.Forms.Button button2;
172 private System.Windows.Forms.Button button1;
173 private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
174 }
175}
176
override void Dispose(bool disposing)
Clean up any resources being used.