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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
namespace ShiftOS
{
partial class ConnectionManager
{
/// <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()
{
this.panel1 = new ShiftUI.Panel();
this.lbconnections = new ShiftUI.ListBox();
this.flbuttons = new ShiftUI.FlowLayoutPanel();
this.btnadd = new ShiftUI.Button();
this.btnconnect = new ShiftUI.Button();
this.btndisconnect = new ShiftUI.Button();
this.panel1.SuspendLayout();
this.flbuttons.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.Widgets.Add(this.flbuttons);
this.panel1.Widgets.Add(this.lbconnections);
this.panel1.Dock = ShiftUI.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(684, 531);
this.panel1.TabIndex = 0;
//
// lbconnections
//
this.lbconnections.Anchor = ((ShiftUI.AnchorStyles)((((ShiftUI.AnchorStyles.Top | ShiftUI.AnchorStyles.Bottom)
| ShiftUI.AnchorStyles.Left)
| ShiftUI.AnchorStyles.Right)));
this.lbconnections.FormattingEnabled = true;
this.lbconnections.Location = new System.Drawing.Point(13, 13);
this.lbconnections.Name = "lbconnections";
this.lbconnections.Size = new System.Drawing.Size(659, 472);
this.lbconnections.TabIndex = 0;
this.lbconnections.SelectedIndexChanged += new System.EventHandler(this.lbconnections_SelectedIndexChanged);
//
// flbuttons
//
this.flbuttons.Anchor = ((ShiftUI.AnchorStyles)(((ShiftUI.AnchorStyles.Bottom | ShiftUI.AnchorStyles.Left)
| ShiftUI.AnchorStyles.Right)));
this.flbuttons.Widgets.Add(this.btnadd);
this.flbuttons.Widgets.Add(this.btnconnect);
this.flbuttons.Widgets.Add(this.btndisconnect);
this.flbuttons.Location = new System.Drawing.Point(13, 489);
this.flbuttons.Name = "flbuttons";
this.flbuttons.Size = new System.Drawing.Size(659, 30);
this.flbuttons.TabIndex = 1;
//
// btnadd
//
this.btnadd.Location = new System.Drawing.Point(3, 3);
this.btnadd.Name = "btnadd";
this.btnadd.Size = new System.Drawing.Size(75, 23);
this.btnadd.TabIndex = 0;
this.btnadd.Text = "Add";
this.btnadd.UseVisualStyleBackColor = true;
this.btnadd.Click += new System.EventHandler(this.btnadd_Click);
//
// btnconnect
//
this.btnconnect.Location = new System.Drawing.Point(84, 3);
this.btnconnect.Name = "btnconnect";
this.btnconnect.Size = new System.Drawing.Size(75, 23);
this.btnconnect.TabIndex = 1;
this.btnconnect.Text = "Connect";
this.btnconnect.UseVisualStyleBackColor = true;
this.btnconnect.Click += new System.EventHandler(this.btnconnect_Click);
//
// btndisconnect
//
this.btndisconnect.Location = new System.Drawing.Point(165, 3);
this.btndisconnect.Name = "btndisconnect";
this.btndisconnect.Size = new System.Drawing.Size(75, 23);
this.btndisconnect.TabIndex = 2;
this.btndisconnect.Text = "Disconnect";
this.btndisconnect.UseVisualStyleBackColor = true;
this.btndisconnect.Click += new System.EventHandler(this.btndisconnect_Click);
//
// ConnectionManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = ShiftUI.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(684, 531);
this.Widgets.Add(this.panel1);
this.Name = "ConnectionManager";
this.Text = "ConnectionManager";
this.Load += new System.EventHandler(this.ConnectionManager_Load);
this.panel1.ResumeLayout(false);
this.flbuttons.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private ShiftUI.Panel panel1;
private ShiftUI.FlowLayoutPanel flbuttons;
private ShiftUI.Button btnadd;
private ShiftUI.Button btnconnect;
private ShiftUI.Button btndisconnect;
private ShiftUI.ListBox lbconnections;
}
}
|