-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathRemoteDesktop.Designer.vb
206 lines (202 loc) · 10.3 KB
/
RemoteDesktop.Designer.vb
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class RemoteDesktop
Inherits System.Windows.Forms.Form
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Wird vom Windows Form-Designer benötigt.
Private components As System.ComponentModel.IContainer
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(RemoteDesktop))
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.MenuStrip1 = New System.Windows.Forms.MenuStrip()
Me.StartToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.StopToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.FramesReceivedToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.MousePositionX0Y0ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Label1 = New System.Windows.Forms.Label()
Me.RadioButton1 = New System.Windows.Forms.RadioButton()
Me.RadioButton2 = New System.Windows.Forms.RadioButton()
Me.RadioButton3 = New System.Windows.Forms.RadioButton()
Me.Label2 = New System.Windows.Forms.Label()
Me.TrackBar1 = New System.Windows.Forms.TrackBar()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.MenuStrip1.SuspendLayout()
CType(Me.TrackBar1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'PictureBox1
'
Me.PictureBox1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.PictureBox1.BackColor = System.Drawing.Color.White
Me.PictureBox1.Location = New System.Drawing.Point(0, 24)
Me.PictureBox1.Name = "PictureBox1"
Me.PictureBox1.Size = New System.Drawing.Size(756, 410)
Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.PictureBox1.TabIndex = 0
Me.PictureBox1.TabStop = False
'
'MenuStrip1
'
Me.MenuStrip1.BackColor = System.Drawing.Color.White
Me.MenuStrip1.Dock = System.Windows.Forms.DockStyle.None
Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.StartToolStripMenuItem, Me.StopToolStripMenuItem, Me.FramesReceivedToolStripMenuItem, Me.MousePositionX0Y0ToolStripMenuItem})
Me.MenuStrip1.Location = New System.Drawing.Point(0, -1)
Me.MenuStrip1.Name = "MenuStrip1"
Me.MenuStrip1.Size = New System.Drawing.Size(387, 24)
Me.MenuStrip1.TabIndex = 1
Me.MenuStrip1.Text = "MenuStrip1"
'
'StartToolStripMenuItem
'
Me.StartToolStripMenuItem.Image = CType(resources.GetObject("StartToolStripMenuItem.Image"), System.Drawing.Image)
Me.StartToolStripMenuItem.Name = "StartToolStripMenuItem"
Me.StartToolStripMenuItem.Size = New System.Drawing.Size(59, 20)
Me.StartToolStripMenuItem.Text = "Start"
'
'StopToolStripMenuItem
'
Me.StopToolStripMenuItem.Image = CType(resources.GetObject("StopToolStripMenuItem.Image"), System.Drawing.Image)
Me.StopToolStripMenuItem.Name = "StopToolStripMenuItem"
Me.StopToolStripMenuItem.Size = New System.Drawing.Size(59, 20)
Me.StopToolStripMenuItem.Text = "Stop"
'
'FramesReceivedToolStripMenuItem
'
Me.FramesReceivedToolStripMenuItem.Enabled = False
Me.FramesReceivedToolStripMenuItem.Name = "FramesReceivedToolStripMenuItem"
Me.FramesReceivedToolStripMenuItem.Size = New System.Drawing.Size(113, 20)
Me.FramesReceivedToolStripMenuItem.Text = "Frames Received: "
'
'MousePositionX0Y0ToolStripMenuItem
'
Me.MousePositionX0Y0ToolStripMenuItem.Enabled = False
Me.MousePositionX0Y0ToolStripMenuItem.Name = "MousePositionX0Y0ToolStripMenuItem"
Me.MousePositionX0Y0ToolStripMenuItem.Size = New System.Drawing.Size(148, 20)
Me.MousePositionX0Y0ToolStripMenuItem.Text = "Mouse Position: X:0 | Y:0"
'
'Label1
'
Me.Label1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.Label1.AutoSize = True
Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!)
Me.Label1.Location = New System.Drawing.Point(8, 442)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(72, 15)
Me.Label1.TabIndex = 2
Me.Label1.Text = "Resulotion: "
'
'RadioButton1
'
Me.RadioButton1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.RadioButton1.AutoSize = True
Me.RadioButton1.Location = New System.Drawing.Point(12, 465)
Me.RadioButton1.Name = "RadioButton1"
Me.RadioButton1.Size = New System.Drawing.Size(78, 17)
Me.RadioButton1.TabIndex = 3
Me.RadioButton1.Text = "1920x1080"
Me.RadioButton1.UseVisualStyleBackColor = True
'
'RadioButton2
'
Me.RadioButton2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.RadioButton2.AutoSize = True
Me.RadioButton2.Checked = True
Me.RadioButton2.Location = New System.Drawing.Point(96, 465)
Me.RadioButton2.Name = "RadioButton2"
Me.RadioButton2.Size = New System.Drawing.Size(72, 17)
Me.RadioButton2.TabIndex = 4
Me.RadioButton2.TabStop = True
Me.RadioButton2.Text = "1600x900"
Me.RadioButton2.UseVisualStyleBackColor = True
'
'RadioButton3
'
Me.RadioButton3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.RadioButton3.AutoSize = True
Me.RadioButton3.Location = New System.Drawing.Point(174, 465)
Me.RadioButton3.Name = "RadioButton3"
Me.RadioButton3.Size = New System.Drawing.Size(72, 17)
Me.RadioButton3.TabIndex = 5
Me.RadioButton3.Text = "1024x768"
Me.RadioButton3.UseVisualStyleBackColor = True
'
'Label2
'
Me.Label2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.Label2.AutoSize = True
Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!)
Me.Label2.Location = New System.Drawing.Point(248, 442)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(86, 15)
Me.Label2.TabIndex = 6
Me.Label2.Text = "Quality (45%): "
'
'TrackBar1
'
Me.TrackBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.TrackBar1.Location = New System.Drawing.Point(337, 440)
Me.TrackBar1.Maximum = 100
Me.TrackBar1.Name = "TrackBar1"
Me.TrackBar1.Size = New System.Drawing.Size(416, 45)
Me.TrackBar1.TabIndex = 7
Me.TrackBar1.Value = 45
'
'RemoteDesktop
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.Color.White
Me.ClientSize = New System.Drawing.Size(756, 497)
Me.Controls.Add(Me.TrackBar1)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.RadioButton3)
Me.Controls.Add(Me.RadioButton2)
Me.Controls.Add(Me.RadioButton1)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.PictureBox1)
Me.Controls.Add(Me.MenuStrip1)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MainMenuStrip = Me.MenuStrip1
Me.Name = "RemoteDesktop"
Me.Text = "RemoteDesktop - "
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
Me.MenuStrip1.ResumeLayout(False)
Me.MenuStrip1.PerformLayout()
CType(Me.TrackBar1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
Friend WithEvents MenuStrip1 As System.Windows.Forms.MenuStrip
Friend WithEvents StartToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents StopToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents RadioButton1 As System.Windows.Forms.RadioButton
Friend WithEvents RadioButton2 As System.Windows.Forms.RadioButton
Friend WithEvents RadioButton3 As System.Windows.Forms.RadioButton
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents TrackBar1 As System.Windows.Forms.TrackBar
Friend WithEvents FramesReceivedToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MousePositionX0Y0ToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
End Class