-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmMain.Designer.cs
More file actions
163 lines (156 loc) · 5.97 KB
/
Copy pathfrmMain.Designer.cs
File metadata and controls
163 lines (156 loc) · 5.97 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// Copyright (c) 2026 SERALYNX LLC and ApacheMinaSSHD.NET contributors.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
namespace SimpleSSHDSever
{
partial class frmMain
{
/// <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()
{
btnStart = new Button();
tabControl1 = new TabControl();
tabPage1 = new TabPage();
richTextBox1 = new RichTextBox();
listView1 = new ListView();
label1 = new Label();
checkBox1 = new CheckBox();
tabControl1.SuspendLayout();
tabPage1.SuspendLayout();
SuspendLayout();
//
// btnStart
//
btnStart.Anchor = AnchorStyles.Top | AnchorStyles.Right;
btnStart.Location = new Point(893, 15);
btnStart.Margin = new Padding(4, 2, 4, 2);
btnStart.Name = "btnStart";
btnStart.Size = new Size(209, 51);
btnStart.TabIndex = 0;
btnStart.Text = "Start";
btnStart.UseVisualStyleBackColor = true;
btnStart.Click += btnStart_Click;
//
// tabControl1
//
tabControl1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
tabControl1.Controls.Add(tabPage1);
tabControl1.Location = new Point(15, 124);
tabControl1.Margin = new Padding(4, 2, 4, 2);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new Size(1086, 448);
tabControl1.TabIndex = 1;
//
// tabPage1
//
tabPage1.Controls.Add(richTextBox1);
tabPage1.Controls.Add(listView1);
tabPage1.Location = new Point(4, 34);
tabPage1.Margin = new Padding(4, 2, 4, 2);
tabPage1.Name = "tabPage1";
tabPage1.Padding = new Padding(4, 2, 4, 2);
tabPage1.Size = new Size(1078, 410);
tabPage1.TabIndex = 0;
tabPage1.Text = "Logs";
tabPage1.UseVisualStyleBackColor = true;
//
// richTextBox1
//
richTextBox1.Dock = DockStyle.Fill;
richTextBox1.Location = new Point(4, 2);
richTextBox1.Margin = new Padding(4, 5, 4, 5);
richTextBox1.Name = "richTextBox1";
richTextBox1.Size = new Size(1070, 406);
richTextBox1.TabIndex = 1;
richTextBox1.Text = "";
//
// listView1
//
listView1.Dock = DockStyle.Fill;
listView1.Location = new Point(4, 2);
listView1.Margin = new Padding(4, 5, 4, 5);
listView1.Name = "listView1";
listView1.Size = new Size(1070, 406);
listView1.TabIndex = 0;
listView1.UseCompatibleStateImageBehavior = false;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 13.8F, FontStyle.Regular, GraphicsUnit.Point, 0);
label1.Location = new Point(20, 28);
label1.Margin = new Padding(4, 0, 4, 0);
label1.Name = "label1";
label1.Size = new Size(335, 38);
label1.TabIndex = 2;
label1.Text = "Simple Mina SSHD Server";
//
// checkBox1
//
checkBox1.AutoSize = true;
checkBox1.Location = new Point(676, 27);
checkBox1.Margin = new Padding(4, 2, 4, 2);
checkBox1.Name = "checkBox1";
checkBox1.Size = new Size(157, 29);
checkBox1.TabIndex = 3;
checkBox1.Text = "FIPS Algorithm";
checkBox1.UseVisualStyleBackColor = true;
//
// frmMain
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1116, 592);
Controls.Add(checkBox1);
Controls.Add(label1);
Controls.Add(tabControl1);
Controls.Add(btnStart);
Margin = new Padding(4, 2, 4, 2);
Name = "frmMain";
Text = "Simple Apache Mina SSHD Server";
Load += frmMain_Load;
tabControl1.ResumeLayout(false);
tabPage1.ResumeLayout(false);
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button btnStart;
private TabControl tabControl1;
private TabPage tabPage1;
private Label label1;
private CheckBox checkBox1;
private ListView listView1;
private RichTextBox richTextBox1;
}
}