?? about.vb
字號:
Public Class About
Inherits System.Windows.Forms.Form
#Region " Windows 窗體設(shè)計器生成的代碼 "
Public Sub New()
MyBase.New()
'該調(diào)用是 Windows 窗體設(shè)計器所必需的。
InitializeComponent()
'在 InitializeComponent() 調(diào)用之后添加任何初始化
End Sub
'窗體重寫 dispose 以清理組件列表。
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
'Windows 窗體設(shè)計器所必需的
Private components As System.ComponentModel.IContainer
'注意: 以下過程是 Windows 窗體設(shè)計器所必需的
'可以使用 Windows 窗體設(shè)計器修改此過程。
'不要使用代碼編輯器修改它。
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 Label4 As System.Windows.Forms.Label
Friend WithEvents ButtonClose As System.Windows.Forms.Button
Friend WithEvents Label5 As System.Windows.Forms.Label
Friend WithEvents LinkLabelEmail As System.Windows.Forms.LinkLabel
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Label1 = New System.Windows.Forms.Label
Me.Label2 = New System.Windows.Forms.Label
Me.Label3 = New System.Windows.Forms.Label
Me.Label4 = New System.Windows.Forms.Label
Me.ButtonClose = New System.Windows.Forms.Button
Me.Label5 = New System.Windows.Forms.Label
Me.LinkLabelEmail = New System.Windows.Forms.LinkLabel
Me.SuspendLayout()
'
'Label1
'
Me.Label1.Font = New System.Drawing.Font("宋體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
Me.Label1.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
Me.Label1.Location = New System.Drawing.Point(64, 8)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(208, 16)
Me.Label1.TabIndex = 0
Me.Label1.Text = "軟件名稱:小魚流水帳(免費)"
'
'Label2
'
Me.Label2.Font = New System.Drawing.Font("宋體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
Me.Label2.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
Me.Label2.Location = New System.Drawing.Point(64, 32)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(208, 16)
Me.Label2.TabIndex = 1
Me.Label2.Text = "軟件版本:Ver 1.0"
'
'Label3
'
Me.Label3.Font = New System.Drawing.Font("宋體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
Me.Label3.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
Me.Label3.Location = New System.Drawing.Point(64, 56)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(208, 16)
Me.Label3.TabIndex = 2
Me.Label3.Text = "版權(quán)作者:于勤科"
'
'Label4
'
Me.Label4.Font = New System.Drawing.Font("宋體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
Me.Label4.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
Me.Label4.Location = New System.Drawing.Point(64, 80)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(200, 16)
Me.Label4.TabIndex = 3
Me.Label4.Text = "聯(lián)系方式:QQ-63370665"
'
'ButtonClose
'
Me.ButtonClose.FlatStyle = System.Windows.Forms.FlatStyle.System
Me.ButtonClose.Location = New System.Drawing.Point(112, 128)
Me.ButtonClose.Name = "ButtonClose"
Me.ButtonClose.Size = New System.Drawing.Size(56, 23)
Me.ButtonClose.TabIndex = 4
Me.ButtonClose.Text = "確定"
'
'Label5
'
Me.Label5.Font = New System.Drawing.Font("宋體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
Me.Label5.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
Me.Label5.Location = New System.Drawing.Point(64, 104)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(80, 16)
Me.Label5.TabIndex = 6
Me.Label5.Text = "聯(lián)系郵件:"
'
'LinkLabelEmail
'
Me.LinkLabelEmail.Location = New System.Drawing.Point(128, 104)
Me.LinkLabelEmail.Name = "LinkLabelEmail"
Me.LinkLabelEmail.Size = New System.Drawing.Size(136, 16)
Me.LinkLabelEmail.TabIndex = 7
Me.LinkLabelEmail.TabStop = True
Me.LinkLabelEmail.Text = "feijian286@163.com"
'
'About
'
Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
Me.ClientSize = New System.Drawing.Size(292, 165)
Me.ControlBox = False
Me.Controls.Add(Me.LinkLabelEmail)
Me.Controls.Add(Me.Label5)
Me.Controls.Add(Me.ButtonClose)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label1)
Me.KeyPreview = True
Me.MaximizeBox = False
Me.MaximumSize = New System.Drawing.Size(300, 199)
Me.MinimizeBox = False
Me.MinimumSize = New System.Drawing.Size(300, 199)
Me.Name = "About"
Me.ShowInTaskbar = False
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "小魚流水帳 V1.0—關(guān)于軟件"
Me.TopMost = True
Me.ResumeLayout(False)
End Sub
#End Region
Private Sub Login_KeyPress(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
'快捷鍵盤Alt+C確定
If e.Alt = True And e.KeyCode = Keys.C Then
Me.Close()
End If
End Sub
Private Sub ButtonClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonClose.Click
Me.Close()
End Sub
End Class
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -