mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
* removed unneeded Imports * renamed namespace to mRemoteNG * changed Logfile path to %USERPROFILE%\AppData\Local\mRemoteNG\mRemoteNG.log * fixed mRemoteNG.exe.config * added more ignores to .gitignore
113 lines
4.6 KiB
VB.net
113 lines
4.6 KiB
VB.net
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
Partial Class frmChoosePanel
|
|
Inherits System.Windows.Forms.Form
|
|
|
|
'Form overrides dispose to clean up the component list.
|
|
<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
|
|
|
|
'Required by the Windows Form Designer
|
|
Private components As System.ComponentModel.IContainer
|
|
|
|
'NOTE: The following procedure is required by the Windows Form Designer
|
|
'It can be modified using the Windows Form Designer.
|
|
'Do not modify it using the code editor.
|
|
<System.Diagnostics.DebuggerStepThrough()> _
|
|
Private Sub InitializeComponent()
|
|
Me.cbPanels = New System.Windows.Forms.ComboBox
|
|
Me.btnOK = New System.Windows.Forms.Button
|
|
Me.lblDescription = New System.Windows.Forms.Label
|
|
Me.btnNew = New System.Windows.Forms.Button
|
|
Me.btnCancel = New System.Windows.Forms.Button
|
|
Me.SuspendLayout()
|
|
'
|
|
'cbPanels
|
|
'
|
|
Me.cbPanels.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
|
Me.cbPanels.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
|
Me.cbPanels.FormattingEnabled = True
|
|
Me.cbPanels.Location = New System.Drawing.Point(79, 45)
|
|
Me.cbPanels.Name = "cbPanels"
|
|
Me.cbPanels.Size = New System.Drawing.Size(157, 21)
|
|
Me.cbPanels.TabIndex = 10
|
|
'
|
|
'btnOK
|
|
'
|
|
Me.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
|
Me.btnOK.Location = New System.Drawing.Point(167, 74)
|
|
Me.btnOK.Name = "btnOK"
|
|
Me.btnOK.Size = New System.Drawing.Size(69, 23)
|
|
Me.btnOK.TabIndex = 20
|
|
Me.btnOK.Text = My.Resources.strButtonOK
|
|
Me.btnOK.UseVisualStyleBackColor = True
|
|
'
|
|
'lblDescription
|
|
'
|
|
Me.lblDescription.Location = New System.Drawing.Point(7, 8)
|
|
Me.lblDescription.Name = "lblDescription"
|
|
Me.lblDescription.Size = New System.Drawing.Size(229, 29)
|
|
Me.lblDescription.TabIndex = 0
|
|
Me.lblDescription.Text = My.Resources.strLabelSelectPanel
|
|
'
|
|
'btnNew
|
|
'
|
|
Me.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
|
Me.btnNew.Image = Global.mRemoteNG.My.Resources.Resources.Panel_Add
|
|
Me.btnNew.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
|
Me.btnNew.Location = New System.Drawing.Point(10, 44)
|
|
Me.btnNew.Name = "btnNew"
|
|
Me.btnNew.Size = New System.Drawing.Size(57, 23)
|
|
Me.btnNew.TabIndex = 40
|
|
Me.btnNew.Text = My.Resources.strButtonNew
|
|
Me.btnNew.TextAlign = System.Drawing.ContentAlignment.MiddleRight
|
|
Me.btnNew.UseVisualStyleBackColor = True
|
|
'
|
|
'btnCancel
|
|
'
|
|
Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
|
Me.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
|
Me.btnCancel.Location = New System.Drawing.Point(92, 74)
|
|
Me.btnCancel.Name = "btnCancel"
|
|
Me.btnCancel.Size = New System.Drawing.Size(69, 23)
|
|
Me.btnCancel.TabIndex = 30
|
|
Me.btnCancel.Text = My.Resources.strButtonCancel
|
|
Me.btnCancel.UseVisualStyleBackColor = True
|
|
'
|
|
'frmChoosePanel
|
|
'
|
|
Me.AcceptButton = Me.btnOK
|
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
|
Me.CancelButton = Me.btnCancel
|
|
Me.ClientSize = New System.Drawing.Size(245, 107)
|
|
Me.Controls.Add(Me.lblDescription)
|
|
Me.Controls.Add(Me.btnNew)
|
|
Me.Controls.Add(Me.btnCancel)
|
|
Me.Controls.Add(Me.btnOK)
|
|
Me.Controls.Add(Me.cbPanels)
|
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
|
Me.Icon = Global.mRemoteNG.My.Resources.Resources.Panels_Icon
|
|
Me.MaximizeBox = False
|
|
Me.MinimizeBox = False
|
|
Me.Name = "frmChoosePanel"
|
|
Me.ShowInTaskbar = False
|
|
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
|
|
Me.Text = My.Resources.strTitleSelectPanel
|
|
Me.ResumeLayout(False)
|
|
|
|
End Sub
|
|
Friend WithEvents cbPanels As System.Windows.Forms.ComboBox
|
|
Friend WithEvents btnOK As System.Windows.Forms.Button
|
|
Friend WithEvents lblDescription As System.Windows.Forms.Label
|
|
Friend WithEvents btnNew As System.Windows.Forms.Button
|
|
Friend WithEvents btnCancel As System.Windows.Forms.Button
|
|
End Class
|