diff ServerMonitor/Controls/SshCheckControl.Designer.cs @ 0:3e1a2131f897

Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
author Brad Greco <brad@bgreco.net>
date Mon, 31 Dec 2018 18:32:14 -0500
parents
children 9e92780ebc0f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ServerMonitor/Controls/SshCheckControl.Designer.cs	Mon Dec 31 18:32:14 2018 -0500
@@ -0,0 +1,181 @@
+namespace ServerMonitorApp
+{
+    partial class SshCheckControl
+    {
+        /// <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 Component 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.ResponseBodyPanel = new System.Windows.Forms.Panel();
+            this.CommandOutputRegexCheckBox = new System.Windows.Forms.CheckBox();
+            this.CommandOutputComboBox = new ServerMonitorApp.MatchComboBox();
+            this.CommandOutputCheckBox = new System.Windows.Forms.CheckBox();
+            this.CommandOutputTextBox = new System.Windows.Forms.TextBox();
+            this.ResponseCodePanel = new System.Windows.Forms.Panel();
+            this.ExitCodeCheckBox = new System.Windows.Forms.CheckBox();
+            this.ExitCodeTextBox = new System.Windows.Forms.TextBox();
+            this.CommandLabel = new System.Windows.Forms.Label();
+            this.CommandTextBox = new System.Windows.Forms.TextBox();
+            this.CheckGroupBox.SuspendLayout();
+            this.ResponseBodyPanel.SuspendLayout();
+            this.ResponseCodePanel.SuspendLayout();
+            this.SuspendLayout();
+            // 
+            // CheckGroupBox
+            // 
+            this.CheckGroupBox.Controls.Add(this.ResponseBodyPanel);
+            this.CheckGroupBox.Controls.Add(this.ResponseCodePanel);
+            this.CheckGroupBox.Controls.Add(this.CommandLabel);
+            this.CheckGroupBox.Controls.Add(this.CommandTextBox);
+            this.CheckGroupBox.Size = new System.Drawing.Size(526, 114);
+            this.CheckGroupBox.Text = "null";
+            // 
+            // ResponseBodyPanel
+            // 
+            this.ResponseBodyPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.ResponseBodyPanel.Controls.Add(this.CommandOutputRegexCheckBox);
+            this.ResponseBodyPanel.Controls.Add(this.CommandOutputComboBox);
+            this.ResponseBodyPanel.Controls.Add(this.CommandOutputCheckBox);
+            this.ResponseBodyPanel.Controls.Add(this.CommandOutputTextBox);
+            this.ResponseBodyPanel.Location = new System.Drawing.Point(9, 75);
+            this.ResponseBodyPanel.Name = "ResponseBodyPanel";
+            this.ResponseBodyPanel.Size = new System.Drawing.Size(511, 28);
+            this.ResponseBodyPanel.TabIndex = 21;
+            // 
+            // CommandOutputRegexCheckBox
+            // 
+            this.CommandOutputRegexCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+            this.CommandOutputRegexCheckBox.AutoSize = true;
+            this.CommandOutputRegexCheckBox.Location = new System.Drawing.Point(395, 6);
+            this.CommandOutputRegexCheckBox.Name = "CommandOutputRegexCheckBox";
+            this.CommandOutputRegexCheckBox.Size = new System.Drawing.Size(116, 17);
+            this.CommandOutputRegexCheckBox.TabIndex = 9;
+            this.CommandOutputRegexCheckBox.Text = "Regular expression";
+            this.CommandOutputRegexCheckBox.UseVisualStyleBackColor = true;
+            // 
+            // CommandOutputComboBox
+            // 
+            this.CommandOutputComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+            this.CommandOutputComboBox.FormattingEnabled = true;
+            this.CommandOutputComboBox.Location = new System.Drawing.Point(106, 4);
+            this.CommandOutputComboBox.Name = "CommandOutputComboBox";
+            this.CommandOutputComboBox.Size = new System.Drawing.Size(110, 21);
+            this.CommandOutputComboBox.TabIndex = 8;
+            // 
+            // CommandOutputCheckBox
+            // 
+            this.CommandOutputCheckBox.AutoSize = true;
+            this.CommandOutputCheckBox.Location = new System.Drawing.Point(0, 6);
+            this.CommandOutputCheckBox.Name = "CommandOutputCheckBox";
+            this.CommandOutputCheckBox.Size = new System.Drawing.Size(106, 17);
+            this.CommandOutputCheckBox.TabIndex = 4;
+            this.CommandOutputCheckBox.Text = "Command output";
+            this.CommandOutputCheckBox.UseVisualStyleBackColor = true;
+            // 
+            // CommandOutputTextBox
+            // 
+            this.CommandOutputTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.CommandOutputTextBox.Location = new System.Drawing.Point(222, 4);
+            this.CommandOutputTextBox.Name = "CommandOutputTextBox";
+            this.CommandOutputTextBox.Size = new System.Drawing.Size(167, 20);
+            this.CommandOutputTextBox.TabIndex = 7;
+            // 
+            // ResponseCodePanel
+            // 
+            this.ResponseCodePanel.Controls.Add(this.ExitCodeCheckBox);
+            this.ResponseCodePanel.Controls.Add(this.ExitCodeTextBox);
+            this.ResponseCodePanel.Location = new System.Drawing.Point(9, 48);
+            this.ResponseCodePanel.Name = "ResponseCodePanel";
+            this.ResponseCodePanel.Size = new System.Drawing.Size(511, 28);
+            this.ResponseCodePanel.TabIndex = 19;
+            // 
+            // ExitCodeCheckBox
+            // 
+            this.ExitCodeCheckBox.AutoSize = true;
+            this.ExitCodeCheckBox.Location = new System.Drawing.Point(0, 6);
+            this.ExitCodeCheckBox.Name = "ExitCodeCheckBox";
+            this.ExitCodeCheckBox.Size = new System.Drawing.Size(104, 17);
+            this.ExitCodeCheckBox.TabIndex = 4;
+            this.ExitCodeCheckBox.Text = "Exit code equals";
+            this.ExitCodeCheckBox.UseVisualStyleBackColor = true;
+            // 
+            // ExitCodeTextBox
+            // 
+            this.ExitCodeTextBox.Location = new System.Drawing.Point(104, 4);
+            this.ExitCodeTextBox.Name = "ExitCodeTextBox";
+            this.ExitCodeTextBox.Size = new System.Drawing.Size(39, 20);
+            this.ExitCodeTextBox.TabIndex = 7;
+            this.ExitCodeTextBox.Text = "0";
+            // 
+            // CommandLabel
+            // 
+            this.CommandLabel.AutoSize = true;
+            this.CommandLabel.Location = new System.Drawing.Point(6, 25);
+            this.CommandLabel.Name = "CommandLabel";
+            this.CommandLabel.Size = new System.Drawing.Size(57, 13);
+            this.CommandLabel.TabIndex = 18;
+            this.CommandLabel.Text = "Command:";
+            // 
+            // CommandTextBox
+            // 
+            this.CommandTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.CommandTextBox.Location = new System.Drawing.Point(68, 22);
+            this.CommandTextBox.Name = "CommandTextBox";
+            this.CommandTextBox.Size = new System.Drawing.Size(452, 20);
+            this.CommandTextBox.TabIndex = 17;
+            // 
+            // SshCheckControl
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.Name = "SshCheckControl";
+            this.Size = new System.Drawing.Size(526, 114);
+            this.CheckGroupBox.ResumeLayout(false);
+            this.CheckGroupBox.PerformLayout();
+            this.ResponseBodyPanel.ResumeLayout(false);
+            this.ResponseBodyPanel.PerformLayout();
+            this.ResponseCodePanel.ResumeLayout(false);
+            this.ResponseCodePanel.PerformLayout();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.Panel ResponseBodyPanel;
+        private System.Windows.Forms.CheckBox CommandOutputRegexCheckBox;
+        private MatchComboBox CommandOutputComboBox;
+        private System.Windows.Forms.CheckBox CommandOutputCheckBox;
+        private System.Windows.Forms.TextBox CommandOutputTextBox;
+        private System.Windows.Forms.Panel ResponseCodePanel;
+        private System.Windows.Forms.CheckBox ExitCodeCheckBox;
+        private System.Windows.Forms.TextBox ExitCodeTextBox;
+        private System.Windows.Forms.Label CommandLabel;
+        private System.Windows.Forms.TextBox CommandTextBox;
+    }
+}