addprojectform.designer.vb
来自「使用Access数据库演示的任务分配管理程序 一个使用ADO.NET基于」· VB 代码 · 共 92 行
VB
92 行
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class AddProjectForm
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overloads 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()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AddProjectForm))
Me.btnOk = New System.Windows.Forms.Button
Me.btnCancel = New System.Windows.Forms.Button
Me.Label1 = New System.Windows.Forms.Label
Me.txtProjectName = New System.Windows.Forms.TextBox
Me.Label2 = New System.Windows.Forms.Label
Me.txtDescription = New System.Windows.Forms.TextBox
Me.SuspendLayout()
'
'btnOk
'
resources.ApplyResources(Me.btnOk, "btnOk")
Me.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK
Me.btnOk.Name = "btnOk"
'
'btnCancel
'
resources.ApplyResources(Me.btnCancel, "btnCancel")
Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnCancel.Name = "btnCancel"
'
'Label1
'
resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
'
'txtProjectName
'
resources.ApplyResources(Me.txtProjectName, "txtProjectName")
Me.txtProjectName.Name = "txtProjectName"
'
'Label2
'
resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
'
'txtDescription
'
resources.ApplyResources(Me.txtDescription, "txtDescription")
Me.txtDescription.Name = "txtDescription"
'
'AddProjectForm
'
Me.AcceptButton = Me.btnOk
resources.ApplyResources(Me, "$this")
Me.CancelButton = Me.btnCancel
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.txtProjectName)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.txtDescription)
Me.Controls.Add(Me.btnCancel)
Me.Controls.Add(Me.btnOk)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.Name = "AddProjectForm"
Me.ShowInTaskbar = False
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents btnCancel As System.Windows.Forms.Button
Friend WithEvents btnOk As System.Windows.Forms.Button
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents txtProjectName As System.Windows.Forms.TextBox
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents txtDescription As System.Windows.Forms.TextBox
End Class
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?