📄 frmdockanchor.designer.vb
字号:
Imports Microsoft.VisualBasic
Imports System
Namespace CodeForChapter2
Public Partial Class frmDockAnchor
''' <summary>
''' Required designer variable.
''' </summary>
Private components As System.ComponentModel.IContainer = Nothing
Private mainMenu1 As System.Windows.Forms.MainMenu
''' <summary>
''' Clean up any resources being used.
''' </summary>
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing AndAlso (Not components Is Nothing) Then
components.Dispose()
End If
MyBase.Dispose(disposing)
End Sub
#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 Sub InitializeComponent()
Me.mainMenu1 = New System.Windows.Forms.MainMenu()
Me.textBox1 = New System.Windows.Forms.TextBox()
Me.textBox2 = New System.Windows.Forms.TextBox()
Me.SuspendLayout()
'
' textBox1
'
Me.textBox1.BackColor = System.Drawing.Color.Lime
Me.textBox1.Dock = System.Windows.Forms.DockStyle.Top
Me.textBox1.Font = New System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular)
Me.textBox1.Location = New System.Drawing.Point(0, 0)
Me.textBox1.Multiline = True
Me.textBox1.Name = "textBox1"
Me.textBox1.Size = New System.Drawing.Size(240, 51)
Me.textBox1.TabIndex = 0
Me.textBox1.Text = "Dock = Top"
Me.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
' textBox2
'
Me.textBox2.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.textBox2.BackColor = System.Drawing.Color.FromArgb((CInt(Fix((CByte(255))))), (CInt(Fix((CByte(128))))), (CInt(Fix((CByte(128))))))
Me.textBox2.Font = New System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Regular)
Me.textBox2.Location = New System.Drawing.Point(16, 70)
Me.textBox2.Multiline = True
Me.textBox2.Name = "textBox2"
Me.textBox2.Size = New System.Drawing.Size(204, 183)
Me.textBox2.TabIndex = 1
Me.textBox2.Text = "Anchored all 4 sides to maintain distances between container edges"
Me.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
' Me.textBox2.TextChanged += New System.EventHandler(Me.textBox2_TextChanged);
'
' frmDockAnchor
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(96F, 96F)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
Me.AutoScroll = True
Me.ClientSize = New System.Drawing.Size(240, 268)
Me.Controls.Add(Me.textBox2)
Me.Controls.Add(Me.textBox1)
Me.Menu = Me.mainMenu1
Me.Name = "frmDockAnchor"
Me.Text = "frmDockAnchor"
' Me.Load += New System.EventHandler(Me.frmDockAnchor_Load);
Me.ResumeLayout(False)
End Sub
#End Region
Private textBox1 As System.Windows.Forms.TextBox
Private WithEvents textBox2 As System.Windows.Forms.TextBox
End Class
End Namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -