diff ServerMonitor/Forms/QuickHelpForm.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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ServerMonitor/Forms/QuickHelpForm.Designer.cs	Mon Dec 31 18:32:14 2018 -0500
@@ -0,0 +1,89 @@
+namespace ServerMonitorApp
+{
+    partial class QuickHelpForm
+    {
+        /// <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 Windows Form 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.HelpTextBox = new System.Windows.Forms.RichTextBox();
+            this.panel1 = new System.Windows.Forms.Panel();
+            this.panel1.SuspendLayout();
+            this.SuspendLayout();
+            // 
+            // HelpTextBox
+            // 
+            this.HelpTextBox.BackColor = System.Drawing.SystemColors.Info;
+            this.HelpTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
+            this.HelpTextBox.Cursor = System.Windows.Forms.Cursors.Arrow;
+            this.HelpTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.HelpTextBox.Location = new System.Drawing.Point(5, 5);
+            this.HelpTextBox.Name = "HelpTextBox";
+            this.HelpTextBox.ReadOnly = true;
+            this.HelpTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
+            this.HelpTextBox.Size = new System.Drawing.Size(261, 438);
+            this.HelpTextBox.TabIndex = 0;
+            this.HelpTextBox.TabStop = false;
+            this.HelpTextBox.Text = "";
+            this.HelpTextBox.Click += new System.EventHandler(this.Control_Click);
+            this.HelpTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Control_KeyDown);
+            // 
+            // panel1
+            // 
+            this.panel1.BackColor = System.Drawing.SystemColors.Info;
+            this.panel1.Controls.Add(this.HelpTextBox);
+            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.panel1.Location = new System.Drawing.Point(1, 1);
+            this.panel1.Name = "panel1";
+            this.panel1.Padding = new System.Windows.Forms.Padding(5);
+            this.panel1.Size = new System.Drawing.Size(271, 448);
+            this.panel1.TabIndex = 1;
+            // 
+            // QuickHelpForm
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.BackColor = System.Drawing.Color.Black;
+            this.ClientSize = new System.Drawing.Size(273, 450);
+            this.Controls.Add(this.panel1);
+            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+            this.Name = "QuickHelpForm";
+            this.Padding = new System.Windows.Forms.Padding(1);
+            this.ShowInTaskbar = false;
+            this.Text = "QuickHelpForm";
+            this.Load += new System.EventHandler(this.QuickHelpForm_Load);
+            this.Click += new System.EventHandler(this.Control_Click);
+            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Control_KeyDown);
+            this.panel1.ResumeLayout(false);
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.RichTextBox HelpTextBox;
+        private System.Windows.Forms.Panel panel1;
+    }
+}
\ No newline at end of file