📄 agedialog.vb
字号:
Option Strict On
Public Class AgeDialog
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
Friend WithEvents cmbYear As System.Windows.Forms.ComboBox
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents bttnOK As System.Windows.Forms.Button
Friend WithEvents bttnCancel As System.Windows.Forms.Button
Friend WithEvents cmbMonth As System.Windows.Forms.ComboBox
Friend WithEvents cmbDay As System.Windows.Forms.ComboBox
'Required by the Windows Form Designer
Private components As System.ComponentModel.Container
'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.bttnOK = New System.Windows.Forms.Button()
Me.bttnCancel = New System.Windows.Forms.Button()
Me.cmbDay = New System.Windows.Forms.ComboBox()
Me.cmbMonth = New System.Windows.Forms.ComboBox()
Me.cmbYear = New System.Windows.Forms.ComboBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'bttnOK
'
Me.bttnOK.Font = New System.Drawing.Font("Verdana", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(161, Byte))
Me.bttnOK.Location = New System.Drawing.Point(240, 80)
Me.bttnOK.Name = "bttnOK"
Me.bttnOK.TabIndex = 5
Me.bttnOK.Text = "OK"
'
'bttnCancel
'
Me.bttnCancel.Font = New System.Drawing.Font("Verdana", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(161, Byte))
Me.bttnCancel.Location = New System.Drawing.Point(8, 80)
Me.bttnCancel.Name = "bttnCancel"
Me.bttnCancel.TabIndex = 5
Me.bttnCancel.Text = "Cancel"
'
'cmbDay
'
Me.cmbDay.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmbDay.Location = New System.Drawing.Point(32, 34)
Me.cmbDay.Name = "cmbDay"
Me.cmbDay.Size = New System.Drawing.Size(51, 22)
Me.cmbDay.TabIndex = 6
Me.cmbDay.Text = "ComboBox1"
'
'cmbMonth
'
Me.cmbMonth.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmbMonth.Location = New System.Drawing.Point(111, 34)
Me.cmbMonth.Name = "cmbMonth"
Me.cmbMonth.Size = New System.Drawing.Size(95, 22)
Me.cmbMonth.TabIndex = 7
Me.cmbMonth.Text = "ComboBox2"
'
'cmbYear
'
Me.cmbYear.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmbYear.Location = New System.Drawing.Point(234, 34)
Me.cmbYear.Name = "cmbYear"
Me.cmbYear.Size = New System.Drawing.Size(65, 22)
Me.cmbYear.TabIndex = 8
Me.cmbYear.Text = "ComboBox3"
'
'Label1
'
Me.Label1.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(32, 18)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(48, 13)
Me.Label1.TabIndex = 9
Me.Label1.Text = "Day"
'
'Label2
'
Me.Label2.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label2.Location = New System.Drawing.Point(114, 18)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(78, 15)
Me.Label2.TabIndex = 10
Me.Label2.Text = "Month"
'
'Label3
'
Me.Label3.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.Location = New System.Drawing.Point(234, 18)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(54, 15)
Me.Label3.TabIndex = 11
Me.Label3.Text = "Year"
'
'AgeDialog
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(320, 109)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Label3, Me.Label2, Me.Label1, Me.cmbYear, Me.cmbMonth, Me.cmbDay, Me.bttnCancel, Me.bttnOK})
Me.Name = "AgeDialog"
Me.Text = "Age DialogBox"
Me.ResumeLayout(False)
End Sub
#End Region
Private Sub AgeDialog_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim year As Integer
For year = 1900 To 2010
cmbYear.Items.Add(year)
Next
Dim month As Integer
For month = 1 To 12
cmbMonth.Items.Add(MonthName(month))
Next
Dim day As Integer
For day = 1 To 31
cmbDay.Items.Add(day)
Next
End Sub
Private Sub bttnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bttnOK.Click
Me.DialogResult = DialogResult.OK
End Sub
Private Sub bttnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bttnCancel.Click
Me.DialogResult = DialogResult.Cancel
End Sub
Private Sub AgeDialog_Activated(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Activated
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -