⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.vb

📁 行動裝置用的鬧鐘,有別於內建的行事 曆的題醒與系統內建的鬧鐘好!
💻 VB
字号:
Public Class about
    Inherits System.Windows.Forms.Form
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents Button1 As System.Windows.Forms.Button

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        '该调用是 Windows 窗体设计器所必需的。
        InitializeComponent()

        '在 InitializeComponent() 调用之后添加任何初始化

    End Sub

    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        MyBase.Dispose(disposing)
    End Sub

    '注意: 以下过程是 Windows 窗体设计器所必需的
    '可以使用 Windows 窗体设计器修改此过程。
    '不要使用代码编辑器修改它。
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        Me.Label1 = New System.Windows.Forms.Label
        Me.Button1 = New System.Windows.Forms.Button
        '
        'Label1
        '
        Me.Label1.Font = New System.Drawing.Font("宋体", 15.75!, System.Drawing.FontStyle.Regular)
        Me.Label1.Location = New System.Drawing.Point(8, 16)
        Me.Label1.Size = New System.Drawing.Size(224, 192)
        Me.Label1.Text = "这是我的第二个VB.NET程序,有时上班没有意思就写着玩!也是个人爱好!如果你喜欢,可以和我多交流,共同进步:)  我的联系方式:EAMIL:mhlxxl@163" & _
        ".com MSN:mhlxxl@163.net"
        '
        'Button1
        '
        Me.Button1.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Regular)
        Me.Button1.Location = New System.Drawing.Point(64, 224)
        Me.Button1.Size = New System.Drawing.Size(112, 32)
        Me.Button1.Text = "返回"
        '
        'about
        '
        Me.Controls.Add(Me.Button1)
        Me.Controls.Add(Me.Label1)
        Me.Text = "about"

    End Sub

#End Region

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Me.Close()
    End Sub
End Class

⌨️ 快捷键说明

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