comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:3e1a2131f897
1 namespace ServerMonitorApp
2 {
3 partial class QuickHelpForm
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.HelpTextBox = new System.Windows.Forms.RichTextBox();
32 this.panel1 = new System.Windows.Forms.Panel();
33 this.panel1.SuspendLayout();
34 this.SuspendLayout();
35 //
36 // HelpTextBox
37 //
38 this.HelpTextBox.BackColor = System.Drawing.SystemColors.Info;
39 this.HelpTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
40 this.HelpTextBox.Cursor = System.Windows.Forms.Cursors.Arrow;
41 this.HelpTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
42 this.HelpTextBox.Location = new System.Drawing.Point(5, 5);
43 this.HelpTextBox.Name = "HelpTextBox";
44 this.HelpTextBox.ReadOnly = true;
45 this.HelpTextBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
46 this.HelpTextBox.Size = new System.Drawing.Size(261, 438);
47 this.HelpTextBox.TabIndex = 0;
48 this.HelpTextBox.TabStop = false;
49 this.HelpTextBox.Text = "";
50 this.HelpTextBox.Click += new System.EventHandler(this.Control_Click);
51 this.HelpTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Control_KeyDown);
52 //
53 // panel1
54 //
55 this.panel1.BackColor = System.Drawing.SystemColors.Info;
56 this.panel1.Controls.Add(this.HelpTextBox);
57 this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
58 this.panel1.Location = new System.Drawing.Point(1, 1);
59 this.panel1.Name = "panel1";
60 this.panel1.Padding = new System.Windows.Forms.Padding(5);
61 this.panel1.Size = new System.Drawing.Size(271, 448);
62 this.panel1.TabIndex = 1;
63 //
64 // QuickHelpForm
65 //
66 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
67 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
68 this.BackColor = System.Drawing.Color.Black;
69 this.ClientSize = new System.Drawing.Size(273, 450);
70 this.Controls.Add(this.panel1);
71 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
72 this.Name = "QuickHelpForm";
73 this.Padding = new System.Windows.Forms.Padding(1);
74 this.ShowInTaskbar = false;
75 this.Text = "QuickHelpForm";
76 this.Load += new System.EventHandler(this.QuickHelpForm_Load);
77 this.Click += new System.EventHandler(this.Control_Click);
78 this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Control_KeyDown);
79 this.panel1.ResumeLayout(false);
80 this.ResumeLayout(false);
81
82 }
83
84 #endregion
85
86 private System.Windows.Forms.RichTextBox HelpTextBox;
87 private System.Windows.Forms.Panel panel1;
88 }
89 }