-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
110 lines (100 loc) · 4.7 KB
/
MainForm.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
/*
Copyright (C) <2007-2017> <Kay Diefenthal>
SatIp is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
SatIp is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with SatIp. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SatIp
{
partial class MainForm
{
/// <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()
{
System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Sat>Ip Server");
this.treeView1 = new System.Windows.Forms.TreeView();
this.panel1 = new System.Windows.Forms.Panel();
this.gradientLabel221 = new SatIp.GradientLabel22();
this.SuspendLayout();
//
// treeView1
//
this.treeView1.Location = new System.Drawing.Point(12, 12);
this.treeView1.Name = "treeView1";
treeNode1.Name = "Node0";
treeNode1.Text = "Sat>Ip Server";
this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
treeNode1});
this.treeView1.Size = new System.Drawing.Size(195, 520);
this.treeView1.TabIndex = 0;
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1_AfterSelect);
//
// panel1
//
this.panel1.Location = new System.Drawing.Point(214, 59);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(744, 473);
this.panel1.TabIndex = 2;
//
// gradientLabel221
//
this.gradientLabel221.Caption = "";
this.gradientLabel221.FirstColor = System.Drawing.SystemColors.InactiveCaption;
this.gradientLabel221.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.gradientLabel221.ForeColor = System.Drawing.SystemColors.Control;
this.gradientLabel221.LastColor = System.Drawing.Color.White;
this.gradientLabel221.Location = new System.Drawing.Point(214, 13);
this.gradientLabel221.Name = "gradientLabel221";
this.gradientLabel221.Size = new System.Drawing.Size(744, 40);
this.gradientLabel221.TabIndex = 3;
this.gradientLabel221.TextColor = System.Drawing.SystemColors.ControlLightLight;
this.gradientLabel221.TextFont = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(970, 544);
this.Controls.Add(this.gradientLabel221);
this.Controls.Add(this.panel1);
this.Controls.Add(this.treeView1);
this.Name = "MainForm";
this.Text = "Form1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DevicesForm_FormClosing);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TreeView treeView1;
private System.Windows.Forms.Panel panel1;
private GradientLabel22 gradientLabel221;
//private GradientLabel22 headerlabel;
}
}