Mercurial > servermonitor
comparison ServerMonitor/Forms/CheckBoxDialog.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 CheckBoxDialog | |
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.PromptCheckBox = new System.Windows.Forms.CheckBox(); | |
32 this.YesButton = new System.Windows.Forms.Button(); | |
33 this.NoButton = new System.Windows.Forms.Button(); | |
34 this.MessageLabel = new System.Windows.Forms.Label(); | |
35 this.MessageIcon = new System.Windows.Forms.PictureBox(); | |
36 this.panel1 = new System.Windows.Forms.Panel(); | |
37 ((System.ComponentModel.ISupportInitialize)(this.MessageIcon)).BeginInit(); | |
38 this.panel1.SuspendLayout(); | |
39 this.SuspendLayout(); | |
40 // | |
41 // PromptCheckBox | |
42 // | |
43 this.PromptCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Bottom; | |
44 this.PromptCheckBox.AutoSize = true; | |
45 this.PromptCheckBox.Location = new System.Drawing.Point(12, 17); | |
46 this.PromptCheckBox.Name = "PromptCheckBox"; | |
47 this.PromptCheckBox.Size = new System.Drawing.Size(107, 17); | |
48 this.PromptCheckBox.TabIndex = 3; | |
49 this.PromptCheckBox.Text = "&Do not ask again"; | |
50 this.PromptCheckBox.UseVisualStyleBackColor = true; | |
51 this.PromptCheckBox.CheckedChanged += new System.EventHandler(this.PromptCheckBox_CheckedChanged); | |
52 // | |
53 // YesButton | |
54 // | |
55 this.YesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); | |
56 this.YesButton.DialogResult = System.Windows.Forms.DialogResult.OK; | |
57 this.YesButton.Location = new System.Drawing.Point(165, 13); | |
58 this.YesButton.Name = "YesButton"; | |
59 this.YesButton.Size = new System.Drawing.Size(75, 23); | |
60 this.YesButton.TabIndex = 1; | |
61 this.YesButton.Text = "&Yes"; | |
62 this.YesButton.UseVisualStyleBackColor = true; | |
63 // | |
64 // NoButton | |
65 // | |
66 this.NoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); | |
67 this.NoButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; | |
68 this.NoButton.Location = new System.Drawing.Point(246, 13); | |
69 this.NoButton.Name = "NoButton"; | |
70 this.NoButton.Size = new System.Drawing.Size(75, 23); | |
71 this.NoButton.TabIndex = 2; | |
72 this.NoButton.Text = "&No"; | |
73 this.NoButton.UseVisualStyleBackColor = true; | |
74 // | |
75 // MessageLabel | |
76 // | |
77 this.MessageLabel.AutoSize = true; | |
78 this.MessageLabel.Location = new System.Drawing.Point(70, 36); | |
79 this.MessageLabel.Name = "MessageLabel"; | |
80 this.MessageLabel.Size = new System.Drawing.Size(0, 13); | |
81 this.MessageLabel.TabIndex = 3; | |
82 // | |
83 // MessageIcon | |
84 // | |
85 this.MessageIcon.Location = new System.Drawing.Point(25, 26); | |
86 this.MessageIcon.Name = "MessageIcon"; | |
87 this.MessageIcon.Size = new System.Drawing.Size(32, 32); | |
88 this.MessageIcon.TabIndex = 4; | |
89 this.MessageIcon.TabStop = false; | |
90 // | |
91 // panel1 | |
92 // | |
93 this.panel1.BackColor = System.Drawing.SystemColors.Control; | |
94 this.panel1.Controls.Add(this.YesButton); | |
95 this.panel1.Controls.Add(this.NoButton); | |
96 this.panel1.Controls.Add(this.PromptCheckBox); | |
97 this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; | |
98 this.panel1.Location = new System.Drawing.Point(0, 84); | |
99 this.panel1.Name = "panel1"; | |
100 this.panel1.Size = new System.Drawing.Size(333, 49); | |
101 this.panel1.TabIndex = 5; | |
102 // | |
103 // CheckBoxDialog | |
104 // | |
105 this.AcceptButton = this.YesButton; | |
106 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
107 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
108 this.BackColor = System.Drawing.Color.White; | |
109 this.CancelButton = this.NoButton; | |
110 this.ClientSize = new System.Drawing.Size(333, 133); | |
111 this.Controls.Add(this.panel1); | |
112 this.Controls.Add(this.MessageIcon); | |
113 this.Controls.Add(this.MessageLabel); | |
114 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; | |
115 this.MaximizeBox = false; | |
116 this.MinimizeBox = false; | |
117 this.Name = "CheckBoxDialog"; | |
118 this.ShowInTaskbar = false; | |
119 this.Text = "Delete Check"; | |
120 this.Load += new System.EventHandler(this.CheckBoxDialog_Load); | |
121 ((System.ComponentModel.ISupportInitialize)(this.MessageIcon)).EndInit(); | |
122 this.panel1.ResumeLayout(false); | |
123 this.panel1.PerformLayout(); | |
124 this.ResumeLayout(false); | |
125 this.PerformLayout(); | |
126 | |
127 } | |
128 | |
129 #endregion | |
130 | |
131 private System.Windows.Forms.CheckBox PromptCheckBox; | |
132 private System.Windows.Forms.Button YesButton; | |
133 private System.Windows.Forms.Button NoButton; | |
134 private System.Windows.Forms.Label MessageLabel; | |
135 private System.Windows.Forms.PictureBox MessageIcon; | |
136 private System.Windows.Forms.Panel panel1; | |
137 } | |
138 } |