forked from Ylianst/MeshCentralRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServerUserControl.Designer.cs
110 lines (104 loc) · 5.15 KB
/
ServerUserControl.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
namespace MeshCentralRouter
{
partial class ServerUserControl
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServerUserControl));
this.serverInfoLabel = new System.Windows.Forms.Label();
this.serverNameLabel = new System.Windows.Forms.Label();
this.serverPictureBox = new System.Windows.Forms.PictureBox();
this.serverContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.infoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.backTimer = new System.Windows.Forms.Timer(this.components);
((System.ComponentModel.ISupportInitialize)(this.serverPictureBox)).BeginInit();
this.serverContextMenuStrip.SuspendLayout();
this.SuspendLayout();
//
// serverInfoLabel
//
resources.ApplyResources(this.serverInfoLabel, "serverInfoLabel");
this.serverInfoLabel.Name = "serverInfoLabel";
this.serverInfoLabel.Click += new System.EventHandler(this.serverButton_Click);
//
// serverNameLabel
//
resources.ApplyResources(this.serverNameLabel, "serverNameLabel");
this.serverNameLabel.Name = "serverNameLabel";
this.serverNameLabel.Click += new System.EventHandler(this.serverButton_Click);
//
// serverPictureBox
//
this.serverPictureBox.Image = global::MeshCentralRouter.Properties.Resources.MeshCentral;
resources.ApplyResources(this.serverPictureBox, "serverPictureBox");
this.serverPictureBox.Name = "serverPictureBox";
this.serverPictureBox.TabStop = false;
this.serverPictureBox.Click += new System.EventHandler(this.serverButton_Click);
//
// serverContextMenuStrip
//
this.serverContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.infoToolStripMenuItem});
this.serverContextMenuStrip.Name = "serverContextMenuStrip";
resources.ApplyResources(this.serverContextMenuStrip, "serverContextMenuStrip");
//
// infoToolStripMenuItem
//
this.infoToolStripMenuItem.Name = "infoToolStripMenuItem";
resources.ApplyResources(this.infoToolStripMenuItem, "infoToolStripMenuItem");
this.infoToolStripMenuItem.Click += new System.EventHandler(this.infoToolStripMenuItem_Click);
//
// backTimer
//
this.backTimer.Interval = 2000;
this.backTimer.Tick += new System.EventHandler(this.backTime_Tick);
//
// ServerUserControl
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.ContextMenuStrip = this.serverContextMenuStrip;
this.Controls.Add(this.serverInfoLabel);
this.Controls.Add(this.serverNameLabel);
this.Controls.Add(this.serverPictureBox);
this.Cursor = System.Windows.Forms.Cursors.Hand;
this.Name = "ServerUserControl";
this.Load += new System.EventHandler(this.ServerUserControl_Load);
this.Click += new System.EventHandler(this.serverButton_Click);
((System.ComponentModel.ISupportInitialize)(this.serverPictureBox)).EndInit();
this.serverContextMenuStrip.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label serverInfoLabel;
private System.Windows.Forms.Label serverNameLabel;
private System.Windows.Forms.PictureBox serverPictureBox;
private System.Windows.Forms.ContextMenuStrip serverContextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem infoToolStripMenuItem;
private System.Windows.Forms.Timer backTimer;
}
}