⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainactions.designer.vb

📁 讲解visual studio的应用
💻 VB
字号:
<System.ComponentModel.ToolboxItemAttribute(False)> _
Partial Public Class MainActions
    Inherits System.Windows.Forms.UserControl

    <System.Diagnostics.DebuggerNonUserCode()> _
    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

    End Sub

    'UserControl overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    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.FormatDocument = New System.Windows.Forms.Button
        Me.SaveProperties = New System.Windows.Forms.Button
        Me.Label1 = New System.Windows.Forms.Label
        Me.PaneAuthorName = New System.Windows.Forms.TextBox
        Me.SuspendLayout()
        '
        'FormatDocument
        '
        Me.FormatDocument.Location = New System.Drawing.Point(0, 0)
        Me.FormatDocument.Name = "FormatDocument"
        Me.FormatDocument.Size = New System.Drawing.Size(147, 23)
        Me.FormatDocument.TabIndex = 0
        Me.FormatDocument.Text = "Format Document"
        Me.FormatDocument.UseVisualStyleBackColor = True
        '
        'SaveProperties
        '
        Me.SaveProperties.Location = New System.Drawing.Point(0, 29)
        Me.SaveProperties.Name = "SaveProperties"
        Me.SaveProperties.Size = New System.Drawing.Size(147, 23)
        Me.SaveProperties.TabIndex = 1
        Me.SaveProperties.Text = "Save Properties"
        Me.SaveProperties.UseVisualStyleBackColor = True
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Location = New System.Drawing.Point(-3, 58)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(72, 13)
        Me.Label1.TabIndex = 2
        Me.Label1.Text = "Author Name:"
        '
        'PaneAuthorName
        '
        Me.PaneAuthorName.Location = New System.Drawing.Point(0, 74)
        Me.PaneAuthorName.Name = "PaneAuthorName"
        Me.PaneAuthorName.Size = New System.Drawing.Size(147, 20)
        Me.PaneAuthorName.TabIndex = 3
        '
        'MainActions
        '
        Me.BackColor = System.Drawing.Color.SkyBlue
        Me.Controls.Add(Me.PaneAuthorName)
        Me.Controls.Add(Me.Label1)
        Me.Controls.Add(Me.SaveProperties)
        Me.Controls.Add(Me.FormatDocument)
        Me.Name = "MainActions"
        Me.Size = New System.Drawing.Size(150, 100)
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents FormatDocument As System.Windows.Forms.Button
    Friend WithEvents SaveProperties As System.Windows.Forms.Button
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents PaneAuthorName As System.Windows.Forms.TextBox

End Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -