mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
92 lines
4.2 KiB
VB.net
92 lines
4.2 KiB
VB.net
Namespace Forms
|
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
Partial Class OptionsForm
|
|
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()
|
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(OptionsForm))
|
|
Dim Alignment2 As mRemoteNG.Controls.Alignment = New mRemoteNG.Controls.Alignment()
|
|
Me.PagePanel = New System.Windows.Forms.Panel()
|
|
Me.OkButton = New System.Windows.Forms.Button()
|
|
Me.CancelButtonControl = New System.Windows.Forms.Button()
|
|
Me.PageListView = New mRemoteNG.Controls.ListView()
|
|
Me.SuspendLayout()
|
|
'
|
|
'PagePanel
|
|
'
|
|
resources.ApplyResources(Me.PagePanel, "PagePanel")
|
|
Me.PagePanel.Name = "PagePanel"
|
|
'
|
|
'OkButton
|
|
'
|
|
resources.ApplyResources(Me.OkButton, "OkButton")
|
|
Me.OkButton.Name = "OkButton"
|
|
Me.OkButton.UseVisualStyleBackColor = True
|
|
'
|
|
'CancelButtonControl
|
|
'
|
|
Me.CancelButtonControl.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
|
resources.ApplyResources(Me.CancelButtonControl, "CancelButtonControl")
|
|
Me.CancelButtonControl.Name = "CancelButtonControl"
|
|
Me.CancelButtonControl.UseVisualStyleBackColor = True
|
|
'
|
|
'PageListView
|
|
'
|
|
Me.PageListView.InactiveHighlightBackColor = System.Drawing.SystemColors.Highlight
|
|
Me.PageListView.InactiveHighlightBorderColor = System.Drawing.SystemColors.HotTrack
|
|
Me.PageListView.InactiveHighlightForeColor = System.Drawing.SystemColors.HighlightText
|
|
Alignment2.Horizontal = mRemoteNG.Controls.HorizontalAlignment.Left
|
|
Alignment2.Vertical = mRemoteNG.Controls.VerticalAlignment.Middle
|
|
Me.PageListView.LabelAlignment = Alignment2
|
|
resources.ApplyResources(Me.PageListView, "PageListView")
|
|
Me.PageListView.MultiSelect = False
|
|
Me.PageListView.Name = "PageListView"
|
|
Me.PageListView.OwnerDraw = True
|
|
Me.PageListView.ShowFocusCues = False
|
|
Me.PageListView.TileSize = New System.Drawing.Size(150, 30)
|
|
Me.PageListView.UseCompatibleStateImageBehavior = False
|
|
Me.PageListView.View = System.Windows.Forms.View.Tile
|
|
'
|
|
'OptionsForm
|
|
'
|
|
Me.AcceptButton = Me.OkButton
|
|
resources.ApplyResources(Me, "$this")
|
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
|
Me.CancelButton = Me.CancelButtonControl
|
|
Me.Controls.Add(Me.CancelButtonControl)
|
|
Me.Controls.Add(Me.OkButton)
|
|
Me.Controls.Add(Me.PagePanel)
|
|
Me.Controls.Add(Me.PageListView)
|
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
|
|
Me.MaximizeBox = False
|
|
Me.MinimizeBox = False
|
|
Me.Name = "OptionsForm"
|
|
Me.ShowInTaskbar = False
|
|
Me.ResumeLayout(False)
|
|
|
|
End Sub
|
|
Friend WithEvents PageListView As mRemoteNG.Controls.ListView
|
|
Friend WithEvents PagePanel As System.Windows.Forms.Panel
|
|
Friend WithEvents OkButton As System.Windows.Forms.Button
|
|
Friend WithEvents CancelButtonControl As System.Windows.Forms.Button
|
|
End Class
|
|
End Namespace |