tbf/TBF/Rig/Modbus/ConductivityMeter/ConductivityMeterDiagnosticsForm.Designer.cs

91 lines
4.3 KiB
C#

namespace TBF.Rig.Modbus.ConductivityMeter
{
partial class ConductivityMeterDiagnosticsForm
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.TextBox diagnosticsTextBox;
private System.Windows.Forms.Button clearButton;
private System.Windows.Forms.Button closeButton;
private System.Windows.Forms.Timer refreshTimer;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.diagnosticsTextBox = new System.Windows.Forms.TextBox();
this.clearButton = new System.Windows.Forms.Button();
this.closeButton = new System.Windows.Forms.Button();
this.refreshTimer = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// diagnosticsTextBox
//
this.diagnosticsTextBox.Anchor =
((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top |
System.Windows.Forms.AnchorStyles.Bottom) |
System.Windows.Forms.AnchorStyles.Left) |
System.Windows.Forms.AnchorStyles.Right)));
this.diagnosticsTextBox.Font = new System.Drawing.Font("Consolas", 9F);
this.diagnosticsTextBox.Location = new System.Drawing.Point(12, 12);
this.diagnosticsTextBox.Multiline = true;
this.diagnosticsTextBox.Name = "diagnosticsTextBox";
this.diagnosticsTextBox.ReadOnly = true;
this.diagnosticsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.diagnosticsTextBox.Size = new System.Drawing.Size(660, 390);
this.diagnosticsTextBox.TabIndex = 0;
this.diagnosticsTextBox.WordWrap = false;
//
// clearButton
//
this.clearButton.Anchor =
((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom |
System.Windows.Forms.AnchorStyles.Left)));
this.clearButton.Location = new System.Drawing.Point(12, 415);
this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(90, 27);
this.clearButton.TabIndex = 1;
this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// closeButton
//
this.closeButton.Anchor =
((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom |
System.Windows.Forms.AnchorStyles.Right)));
this.closeButton.Location = new System.Drawing.Point(582, 415);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(90, 27);
this.closeButton.TabIndex = 2;
this.closeButton.Text = "Close";
this.closeButton.UseVisualStyleBackColor = true;
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
//
// refreshTimer
//
this.refreshTimer.Interval = 500;
this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick);
//
// ConductivityMeterDiagnosticsForm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(684, 454);
this.Controls.Add(this.diagnosticsTextBox);
this.Controls.Add(this.clearButton);
this.Controls.Add(this.closeButton);
this.Name = "ConductivityMeterDiagnosticsForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Conductivity Meter - Modbus Diagnostics";
this.Load += new System.EventHandler(this.ConductivityMeterDiagnosticsForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
}
}