comparison ServerMonitor/Forms/ServerSummaryForm.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 3142e52cbe69
comparison
equal deleted inserted replaced
-1:000000000000 0:3e1a2131f897
1 namespace ServerMonitorApp
2 {
3 partial class ServerSummaryForm
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.ServerPanel = new System.Windows.Forms.FlowLayoutPanel();
32 this.NewServerButton = new System.Windows.Forms.Button();
33 this.SuspendLayout();
34 //
35 // ServerPanel
36 //
37 this.ServerPanel.Location = new System.Drawing.Point(12, 12);
38 this.ServerPanel.Name = "ServerPanel";
39 this.ServerPanel.Size = new System.Drawing.Size(560, 308);
40 this.ServerPanel.TabIndex = 0;
41 //
42 // NewServerButton
43 //
44 this.NewServerButton.Image = global::ServerMonitorApp.Properties.Resources.add;
45 this.NewServerButton.Location = new System.Drawing.Point(12, 409);
46 this.NewServerButton.Name = "NewServerButton";
47 this.NewServerButton.Size = new System.Drawing.Size(96, 29);
48 this.NewServerButton.TabIndex = 0;
49 this.NewServerButton.Text = "New server";
50 this.NewServerButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
51 this.NewServerButton.UseVisualStyleBackColor = true;
52 this.NewServerButton.Click += new System.EventHandler(this.NewServerButton_Click);
53 //
54 // ServerSummaryForm
55 //
56 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
57 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
58 this.ClientSize = new System.Drawing.Size(800, 450);
59 this.Controls.Add(this.NewServerButton);
60 this.Controls.Add(this.ServerPanel);
61 this.Name = "ServerSummaryForm";
62 this.Text = "Form1";
63 this.Load += new System.EventHandler(this.ServerSummaryForm_Load);
64 this.ResumeLayout(false);
65
66 }
67
68 #endregion
69
70 private System.Windows.Forms.FlowLayoutPanel ServerPanel;
71 private System.Windows.Forms.Button NewServerButton;
72 }
73 }
74