namespace WindowsFormsApplication1
{
partial class AlertsForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.configTextBox = new System.Windows.Forms.TextBox();
this.startButton = new System.Windows.Forms.Button();
this.stopButton = new System.Windows.Forms.Button();
this.resultsTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.alertCountLabel = new System.Windows.Forms.Label();
this.messageCountLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(40, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Config:";
//
// configTextBox
//
this.configTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.configTextBox.Location = new System.Drawing.Point(12, 25);
this.configTextBox.Name = "configTextBox";
this.configTextBox.Size = new System.Drawing.Size(268, 20);
this.configTextBox.TabIndex = 1;
//
// startButton
//
this.startButton.Location = new System.Drawing.Point(12, 51);
this.startButton.Name = "startButton";
this.startButton.Size = new System.Drawing.Size(75, 23);
this.startButton.TabIndex = 2;
this.startButton.Text = "Start";
this.startButton.UseVisualStyleBackColor = true;
this.startButton.Click += new System.EventHandler(this.startButton_Click);
//
// stopButton
//
this.stopButton.Location = new System.Drawing.Point(93, 51);
this.stopButton.Name = "stopButton";
this.stopButton.Size = new System.Drawing.Size(75, 23);
this.stopButton.TabIndex = 3;
this.stopButton.Text = "Stop";
this.stopButton.UseVisualStyleBackColor = true;
this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
//
// resultsTextBox
//
this.resultsTextBox.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.resultsTextBox.Location = new System.Drawing.Point(12, 103);
this.resultsTextBox.Multiline = true;
this.resultsTextBox.Name = "resultsTextBox";
this.resultsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.resultsTextBox.Size = new System.Drawing.Size(268, 151);
this.resultsTextBox.TabIndex = 4;
this.resultsTextBox.WordWrap = false;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 87);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(45, 13);
this.label2.TabIndex = 5;
this.label2.Text = "Results:";
//
// alertCountLabel
//
this.alertCountLabel.AutoSize = true;
this.alertCountLabel.Location = new System.Drawing.Point(174, 48);
this.alertCountLabel.Name = "alertCountLabel";
this.alertCountLabel.Size = new System.Drawing.Size(59, 13);
this.alertCountLabel.TabIndex = 6;
this.alertCountLabel.Text = "Alert Count";
//
// messageCountLabel
//
this.messageCountLabel.AutoSize = true;
this.messageCountLabel.Location = new System.Drawing.Point(174, 61);
this.messageCountLabel.Name = "messageCountLabel";
this.messageCountLabel.Size = new System.Drawing.Size(81, 13);
this.messageCountLabel.TabIndex = 7;
this.messageCountLabel.Text = "Message Count";
//
// AlertsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.messageCountLabel);
this.Controls.Add(this.alertCountLabel);
this.Controls.Add(this.label2);
this.Controls.Add(this.resultsTextBox);
this.Controls.Add(this.stopButton);
this.Controls.Add(this.startButton);
this.Controls.Add(this.configTextBox);
this.Controls.Add(this.label1);
this.Name = "AlertsForm";
this.Text = "AlertsForm";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.AlertsForm_FormClosed);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox configTextBox;
private System.Windows.Forms.Button startButton;
private System.Windows.Forms.Button stopButton;
private System.Windows.Forms.TextBox resultsTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label alertCountLabel;
private System.Windows.Forms.Label messageCountLabel;
}
}