|
|
|
@ -34,23 +34,32 @@ namespace ClientForm |
|
|
|
|
this.objectButton = new System.Windows.Forms.Button(); |
|
|
|
|
this.imageButton = new System.Windows.Forms.Button(); |
|
|
|
|
this.fileButton = new System.Windows.Forms.Button(); |
|
|
|
|
this.mainTablePanel = new System.Windows.Forms.TableLayoutPanel(); |
|
|
|
|
this.panel1 = new System.Windows.Forms.Panel(); |
|
|
|
|
this.statusStrip = new System.Windows.Forms.StatusStrip(); |
|
|
|
|
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); |
|
|
|
|
this.heartBeatStatus = new System.Windows.Forms.ToolStripStatusLabel(); |
|
|
|
|
this.mainTablePanel.SuspendLayout(); |
|
|
|
|
this.panel1.SuspendLayout(); |
|
|
|
|
this.statusStrip.SuspendLayout(); |
|
|
|
|
this.SuspendLayout(); |
|
|
|
|
// |
|
|
|
|
// logConsole |
|
|
|
|
// |
|
|
|
|
this.logConsole.BackColor = System.Drawing.Color.Black; |
|
|
|
|
this.logConsole.Dock = System.Windows.Forms.DockStyle.Fill; |
|
|
|
|
this.logConsole.ForeColor = System.Drawing.Color.SpringGreen; |
|
|
|
|
this.logConsole.Location = new System.Drawing.Point(12, 93); |
|
|
|
|
this.logConsole.Location = new System.Drawing.Point(153, 4); |
|
|
|
|
this.logConsole.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); |
|
|
|
|
this.logConsole.Multiline = true; |
|
|
|
|
this.logConsole.Name = "logConsole"; |
|
|
|
|
this.logConsole.ScrollBars = System.Windows.Forms.ScrollBars.Both; |
|
|
|
|
this.logConsole.Size = new System.Drawing.Size(470, 344); |
|
|
|
|
this.logConsole.Size = new System.Drawing.Size(572, 354); |
|
|
|
|
this.logConsole.TabIndex = 1; |
|
|
|
|
// |
|
|
|
|
// stringButton |
|
|
|
|
// |
|
|
|
|
this.stringButton.Location = new System.Drawing.Point(34, 39); |
|
|
|
|
this.stringButton.Location = new System.Drawing.Point(32, 22); |
|
|
|
|
this.stringButton.Name = "stringButton"; |
|
|
|
|
this.stringButton.Size = new System.Drawing.Size(75, 23); |
|
|
|
|
this.stringButton.TabIndex = 2; |
|
|
|
@ -60,7 +69,7 @@ namespace ClientForm |
|
|
|
|
// |
|
|
|
|
// objectButton |
|
|
|
|
// |
|
|
|
|
this.objectButton.Location = new System.Drawing.Point(146, 39); |
|
|
|
|
this.objectButton.Location = new System.Drawing.Point(32, 69); |
|
|
|
|
this.objectButton.Name = "objectButton"; |
|
|
|
|
this.objectButton.Size = new System.Drawing.Size(75, 23); |
|
|
|
|
this.objectButton.TabIndex = 2; |
|
|
|
@ -70,7 +79,7 @@ namespace ClientForm |
|
|
|
|
// |
|
|
|
|
// imageButton |
|
|
|
|
// |
|
|
|
|
this.imageButton.Location = new System.Drawing.Point(268, 39); |
|
|
|
|
this.imageButton.Location = new System.Drawing.Point(32, 111); |
|
|
|
|
this.imageButton.Name = "imageButton"; |
|
|
|
|
this.imageButton.Size = new System.Drawing.Size(75, 23); |
|
|
|
|
this.imageButton.TabIndex = 2; |
|
|
|
@ -80,7 +89,7 @@ namespace ClientForm |
|
|
|
|
// |
|
|
|
|
// fileButton |
|
|
|
|
// |
|
|
|
|
this.fileButton.Location = new System.Drawing.Point(379, 39); |
|
|
|
|
this.fileButton.Location = new System.Drawing.Point(32, 152); |
|
|
|
|
this.fileButton.Name = "fileButton"; |
|
|
|
|
this.fileButton.Size = new System.Drawing.Size(75, 23); |
|
|
|
|
this.fileButton.TabIndex = 2; |
|
|
|
@ -88,19 +97,70 @@ namespace ClientForm |
|
|
|
|
this.fileButton.UseVisualStyleBackColor = true; |
|
|
|
|
this.fileButton.Click += new System.EventHandler(this.fileButton_Click); |
|
|
|
|
// |
|
|
|
|
// mainTablePanel |
|
|
|
|
// |
|
|
|
|
this.mainTablePanel.ColumnCount = 2; |
|
|
|
|
this.mainTablePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F)); |
|
|
|
|
this.mainTablePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
|
|
|
this.mainTablePanel.Controls.Add(this.logConsole, 1, 0); |
|
|
|
|
this.mainTablePanel.Controls.Add(this.panel1, 0, 0); |
|
|
|
|
this.mainTablePanel.Dock = System.Windows.Forms.DockStyle.Fill; |
|
|
|
|
this.mainTablePanel.Location = new System.Drawing.Point(0, 0); |
|
|
|
|
this.mainTablePanel.Name = "mainTablePanel"; |
|
|
|
|
this.mainTablePanel.RowCount = 1; |
|
|
|
|
this.mainTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
|
|
|
this.mainTablePanel.Size = new System.Drawing.Size(728, 362); |
|
|
|
|
this.mainTablePanel.TabIndex = 3; |
|
|
|
|
// |
|
|
|
|
// panel1 |
|
|
|
|
// |
|
|
|
|
this.panel1.Controls.Add(this.stringButton); |
|
|
|
|
this.panel1.Controls.Add(this.fileButton); |
|
|
|
|
this.panel1.Controls.Add(this.objectButton); |
|
|
|
|
this.panel1.Controls.Add(this.imageButton); |
|
|
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; |
|
|
|
|
this.panel1.Location = new System.Drawing.Point(3, 3); |
|
|
|
|
this.panel1.Name = "panel1"; |
|
|
|
|
this.panel1.Size = new System.Drawing.Size(144, 356); |
|
|
|
|
this.panel1.TabIndex = 2; |
|
|
|
|
// |
|
|
|
|
// statusStrip |
|
|
|
|
// |
|
|
|
|
this.statusStrip.ImageScalingSize = new System.Drawing.Size(20, 20); |
|
|
|
|
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
|
|
|
|
this.toolStripStatusLabel1, |
|
|
|
|
this.heartBeatStatus}); |
|
|
|
|
this.statusStrip.Location = new System.Drawing.Point(0, 344); |
|
|
|
|
this.statusStrip.Name = "statusStrip"; |
|
|
|
|
this.statusStrip.Size = new System.Drawing.Size(728, 18); |
|
|
|
|
this.statusStrip.TabIndex = 4; |
|
|
|
|
this.statusStrip.Text = "statusStrip1"; |
|
|
|
|
// |
|
|
|
|
// toolStripStatusLabel1 |
|
|
|
|
// |
|
|
|
|
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; |
|
|
|
|
this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 13); |
|
|
|
|
// |
|
|
|
|
// heartBeatStatus |
|
|
|
|
// |
|
|
|
|
this.heartBeatStatus.Name = "heartBeatStatus"; |
|
|
|
|
this.heartBeatStatus.Size = new System.Drawing.Size(0, 13); |
|
|
|
|
// |
|
|
|
|
// MainForm |
|
|
|
|
// |
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); |
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
|
|
|
this.ClientSize = new System.Drawing.Size(498, 450); |
|
|
|
|
this.Controls.Add(this.fileButton); |
|
|
|
|
this.Controls.Add(this.imageButton); |
|
|
|
|
this.Controls.Add(this.objectButton); |
|
|
|
|
this.Controls.Add(this.stringButton); |
|
|
|
|
this.Controls.Add(this.logConsole); |
|
|
|
|
this.ClientSize = new System.Drawing.Size(910, 452); |
|
|
|
|
this.Controls.Add(this.statusStrip); |
|
|
|
|
this.Controls.Add(this.mainTablePanel); |
|
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; |
|
|
|
|
this.Name = "MainForm"; |
|
|
|
|
this.Text = "Client"; |
|
|
|
|
this.mainTablePanel.ResumeLayout(false); |
|
|
|
|
this.mainTablePanel.PerformLayout(); |
|
|
|
|
this.panel1.ResumeLayout(false); |
|
|
|
|
this.statusStrip.ResumeLayout(false); |
|
|
|
|
this.statusStrip.PerformLayout(); |
|
|
|
|
this.ResumeLayout(false); |
|
|
|
|
this.PerformLayout(); |
|
|
|
|
|
|
|
|
@ -113,6 +173,11 @@ namespace ClientForm |
|
|
|
|
private System.Windows.Forms.Button objectButton; |
|
|
|
|
private System.Windows.Forms.Button imageButton; |
|
|
|
|
private System.Windows.Forms.Button fileButton; |
|
|
|
|
private System.Windows.Forms.TableLayoutPanel mainTablePanel; |
|
|
|
|
private System.Windows.Forms.Panel panel1; |
|
|
|
|
private System.Windows.Forms.StatusStrip statusStrip; |
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; |
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel heartBeatStatus; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|