form1.designer.vb

来自「Microsoft Mobile Development Handbook的代码」· VB 代码 · 共 92 行

VB
92
字号
Namespace WSCompressionSample
    <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
    Partial Public Class Form1
        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)
            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.panel1 = New System.Windows.Forms.Panel
            Me.textBox1 = New System.Windows.Forms.TextBox
            Me.checkBoxCompressed = New System.Windows.Forms.CheckBox
            Me.mainMenu1 = New System.Windows.Forms.MainMenu
            Me.buttonGetCustomers = New System.Windows.Forms.Button
            Me.panel1.SuspendLayout()
            Me.SuspendLayout()
            '
            'panel1
            '
            Me.panel1.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.panel1.Controls.Add(Me.textBox1)
            Me.panel1.Location = New System.Drawing.Point(0, 28)
            Me.panel1.Name = "panel1"
            Me.panel1.Size = New System.Drawing.Size(240, 239)
            '
            'textBox1
            '
            Me.textBox1.Dock = System.Windows.Forms.DockStyle.Fill
            Me.textBox1.Location = New System.Drawing.Point(0, 0)
            Me.textBox1.Multiline = True
            Me.textBox1.Name = "textBox1"
            Me.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both
            Me.textBox1.Size = New System.Drawing.Size(240, 239)
            Me.textBox1.TabIndex = 3
            '
            'checkBoxCompressed
            '
            Me.checkBoxCompressed.Location = New System.Drawing.Point(4, 1)
            Me.checkBoxCompressed.Name = "checkBoxCompressed"
            Me.checkBoxCompressed.Size = New System.Drawing.Size(100, 20)
            Me.checkBoxCompressed.TabIndex = 4
            Me.checkBoxCompressed.Text = "Compressed"
            '
            'buttonGetCustomers
            '
            Me.buttonGetCustomers.Location = New System.Drawing.Point(124, 2)
            Me.buttonGetCustomers.Name = "buttonGetCustomers"
            Me.buttonGetCustomers.Size = New System.Drawing.Size(113, 20)
            Me.buttonGetCustomers.TabIndex = 2
            Me.buttonGetCustomers.Text = "Get Customers"
            '
            'Form1
            '
            Me.AutoScaleDimensions = New System.Drawing.SizeF(96.0!, 96.0!)
            Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi
            Me.AutoScroll = True
            Me.ClientSize = New System.Drawing.Size(240, 268)
            Me.Controls.Add(Me.panel1)
            Me.Controls.Add(Me.checkBoxCompressed)
            Me.Controls.Add(Me.buttonGetCustomers)
            Me.Menu = Me.mainMenu1
            Me.MinimizeBox = False
            Me.Name = "Form1"
            Me.Text = "Compression Web Service"
            Me.panel1.ResumeLayout(False)
            Me.ResumeLayout(False)

        End Sub
        Private WithEvents panel1 As System.Windows.Forms.Panel
        Private WithEvents textBox1 As System.Windows.Forms.TextBox
        Private WithEvents checkBoxCompressed As System.Windows.Forms.CheckBox
        Private WithEvents mainMenu1 As System.Windows.Forms.MainMenu
        Private WithEvents buttonGetCustomers As System.Windows.Forms.Button

    End Class

End Namespace

⌨️ 快捷键说明

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