companynameactions.designer.vb

来自「讲解visual studio的应用」· VB 代码 · 共 65 行

VB
65
字号
<System.ComponentModel.ToolboxItemAttribute(False)> _
Partial Public Class CompanyNameActions
    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.InsertNames = New System.Windows.Forms.Button
        Me.NameList = New System.Windows.Forms.ListView
        Me.SuspendLayout()
        '
        'InsertNames
        '
        Me.InsertNames.Location = New System.Drawing.Point(0, 0)
        Me.InsertNames.Name = "InsertNames"
        Me.InsertNames.Size = New System.Drawing.Size(147, 23)
        Me.InsertNames.TabIndex = 0
        Me.InsertNames.Text = "Insert Name(s)"
        Me.InsertNames.UseVisualStyleBackColor = True
        '
        'NameList
        '
        Me.NameList.Location = New System.Drawing.Point(3, 29)
        Me.NameList.Name = "NameList"
        Me.NameList.Size = New System.Drawing.Size(144, 147)
        Me.NameList.TabIndex = 1
        Me.NameList.UseCompatibleStateImageBehavior = False
        '
        'CompanyNameActions
        '
        Me.Controls.Add(Me.NameList)
        Me.Controls.Add(Me.InsertNames)
        Me.Name = "CompanyNameActions"
        Me.Size = New System.Drawing.Size(150, 179)
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents InsertNames As System.Windows.Forms.Button
    Friend WithEvents NameList As System.Windows.Forms.ListView

End Class

⌨️ 快捷键说明

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