打印本文 打印本文 关闭窗口 关闭窗口
VB.NET中的组件开发
作者:武汉SEO闵涛  文章来源:敏韬网  点击数5571  更新时间:2009/4/23 19:01:27  文章录入:mintao  责任编辑:mintao
;WithEvents lblUserPwd As System.Windows.Forms.Label
    Friend WithEvents lblUserName As System.Windows.Forms.Label
    Friend WithEvents txtUserName As System.Windows.Forms.TextBox
    Friend WithEvents txtUserPwd As System.Windows.Forms.TextBox
    Friend WithEvents btnSubmit As System.Windows.Forms.Button
    Friend WithEvents btnExit As System.Windows.Forms.Button
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents btnCancel As System.Windows.Forms.Button
    Friend WithEvents Label3 As System.Windows.Forms.Label
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()Sub InitializeComponent()
        Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(loginForm))
        Me.lblUserPwd = New System.Windows.Forms.Label
        Me.lblUserName = New System.Windows.Forms.Label
        Me.txtUserName = New System.Windows.Forms.TextBox
        Me.txtUserPwd = New System.Windows.Forms.TextBox
        Me.btnSubmit = New System.Windows.Forms.Button
        Me.btnExit = New System.Windows.Forms.Button
        Me.Label1 = New System.Windows.Forms.Label
        Me.Label2 = New System.Windows.Forms.Label
        Me.btnCancel = New System.Windows.Forms.Button
        Me.Label3 = New System.Windows.Forms.Label
        Me.SuspendLayout()
        ''''
        ''''lblUserPwd
        ''''
        Me.lblUserPwd.Location = New System.Drawing.Point(46, 176)
        Me.lblUserPwd.Name = "lblUserPwd"
        Me.lblUserPwd.Size = New System.Drawing.Size(52, 23)
        Me.lblUserPwd.TabIndex = 0
        Me.lblUserPwd.Text = "密码:"
        Me.lblUserPwd.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
        ''''
        ''''lblUserName
        ''''
        Me.lblUserName.Location = New System.Drawing.Point(46, 128)
        Me.lblUserName.Name = "lblUserName"
        Me.lblUserName.Size = New System.Drawing.Size(52, 23)
        Me.lblUserName.TabIndex = 1
        Me.lblUserName.Text = "帐号:"
        Me.lblUserName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
        ''''
        ''''txtUserName
        ''''
        Me.txtUserName.BackColor = System.Drawing.SystemColors.Info
        Me.txtUserName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.txtUserName.Location = New System.Drawing.Point(110, 128)
        Me.txtUserName.Name = "txtUserName"
        Me.txtUserName.Size = New System.Drawing.Size(151, 21)
        Me.txtUserName.TabIndex = 3
        Me.txtUserName.Text = ""
        ''''
        ''''txtUserPwd
        ''''
        Me.txtUserPwd.BackColor = System.Drawing.SystemColors.Info

上一页  [1] [2] [3] [4] [5] [6] [7]  下一页

打印本文 打印本文 关闭窗口 关闭窗口