networkcredentialsform.designer.vb

来自「清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码」· VB 代码 · 共 92 行

VB
92
字号
Namespace MobileDevelopersHandbook
    <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
    Partial Public Class NetworkCredentialsForm
        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.components = New System.ComponentModel.Container
            Me.mainMenu1 = New System.Windows.Forms.MainMenu
            Me.networkCredentialsBindingSource = New System.Windows.Forms.BindingSource(Me.components)
            Me.passwordLabel = New System.Windows.Forms.Label
            Me.passwordTextBox = New System.Windows.Forms.TextBox
            Me.usernameLabel = New System.Windows.Forms.Label
            Me.usernameTextBox = New System.Windows.Forms.TextBox
            Me.SuspendLayout()
            '
            'networkCredentialsBindingSource
            '
            Me.networkCredentialsBindingSource.DataSource = GetType(MobileDevelopersHandbook.NetworkCredentials)
            '
            'passwordLabel
            '
            Me.passwordLabel.Font = New System.Drawing.Font("Tahoma", 9.0!, System.Drawing.FontStyle.Bold)
            Me.passwordLabel.Location = New System.Drawing.Point(15, 107)
            Me.passwordLabel.Name = "passwordLabel"
            Me.passwordLabel.Size = New System.Drawing.Size(70, 14)
            Me.passwordLabel.Text = "Password:"
            '
            'passwordTextBox
            '
            Me.passwordTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.networkCredentialsBindingSource, "UserPassword", True))
            Me.passwordTextBox.Location = New System.Drawing.Point(15, 136)
            Me.passwordTextBox.Name = "passwordTextBox"
            Me.passwordTextBox.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
            Me.passwordTextBox.Size = New System.Drawing.Size(196, 21)
            Me.passwordTextBox.TabIndex = 5
            '
            'usernameLabel
            '
            Me.usernameLabel.Font = New System.Drawing.Font("Tahoma", 9.0!, System.Drawing.FontStyle.Bold)
            Me.usernameLabel.Location = New System.Drawing.Point(15, 28)
            Me.usernameLabel.Name = "usernameLabel"
            Me.usernameLabel.Size = New System.Drawing.Size(88, 14)
            Me.usernameLabel.Text = "Username:"
            '
            'usernameTextBox
            '
            Me.usernameTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.networkCredentialsBindingSource, "Username", True))
            Me.usernameTextBox.Location = New System.Drawing.Point(15, 58)
            Me.usernameTextBox.Name = "usernameTextBox"
            Me.usernameTextBox.Size = New System.Drawing.Size(196, 21)
            Me.usernameTextBox.TabIndex = 4
            '
            'NetworkCredentialsForm
            '
            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.passwordLabel)
            Me.Controls.Add(Me.passwordTextBox)
            Me.Controls.Add(Me.usernameLabel)
            Me.Controls.Add(Me.usernameTextBox)
            Me.Menu = Me.mainMenu1
            Me.Name = "NetworkCredentialsForm"
            Me.Text = "NetworkCredentialsForm"
            Me.ResumeLayout(False)

        End Sub
        Private WithEvents mainMenu1 As System.Windows.Forms.MainMenu
        Private WithEvents networkCredentialsBindingSource As System.Windows.Forms.BindingSource
        Private WithEvents passwordLabel As System.Windows.Forms.Label
        Private WithEvents passwordTextBox As System.Windows.Forms.TextBox
        Private WithEvents usernameLabel As System.Windows.Forms.Label
        Private WithEvents usernameTextBox As System.Windows.Forms.TextBox
    End Class
End Namespace

⌨️ 快捷键说明

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