📄 about.vb
字号:
Public Class about
Inherits System.Windows.Forms.Form
#Region " Windows 窗体设计器生成的代码 "
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
InitializeComponent()
'在 InitializeComponent() 调用之后添加任何初始化
End Sub
'窗体重写处置以清理组件列表。
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 窗体设计器所必需的
Private components As System.ComponentModel.IContainer
'注意:以下过程是 Windows 窗体设计器所必需的
'可以使用 Windows 窗体设计器修改此过程。
'不要使用代码编辑器修改它。
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents LinkLabel1 As System.Windows.Forms.LinkLabel
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents Btexit As System.Windows.Forms.Button
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Label1 = New System.Windows.Forms.Label()
Me.LinkLabel1 = New System.Windows.Forms.LinkLabel()
Me.Label2 = New System.Windows.Forms.Label()
Me.Btexit = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.Font = New System.Drawing.Font("隶书", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte))
Me.Label1.Location = New System.Drawing.Point(64, 8)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(176, 24)
Me.Label1.TabIndex = 0
Me.Label1.Text = "仓库管理系统1.0版"
'
'LinkLabel1
'
Me.LinkLabel1.Location = New System.Drawing.Point(64, 40)
Me.LinkLabel1.Name = "LinkLabel1"
Me.LinkLabel1.Size = New System.Drawing.Size(160, 32)
Me.LinkLabel1.TabIndex = 1
Me.LinkLabel1.TabStop = True
Me.LinkLabel1.Text = "访问我们的网站"
'
'Label2
'
Me.Label2.Location = New System.Drawing.Point(64, 72)
Me.Label2.Name = "Label2"
Me.Label2.TabIndex = 2
Me.Label2.Text = "2002/4/20"
'
'Btexit
'
Me.Btexit.Location = New System.Drawing.Point(192, 112)
Me.Btexit.Name = "Btexit"
Me.Btexit.TabIndex = 3
Me.Btexit.Text = "退出"
'
'about
'
Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
Me.ClientSize = New System.Drawing.Size(280, 165)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Btexit, Me.Label2, Me.LinkLabel1, Me.Label1})
Me.Name = "about"
Me.Text = "about"
Me.ResumeLayout(False)
End Sub
#End Region
Private Sub Btexit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Btexit.Click
Close()
End Sub
Protected Sub LinkLabel1_LinkClicked(ByVal Sender As Object, _
ByVal e As EventArgs) Handles LinkLabel1.Click
' Change the color of the link text by setting LinkVisited
' to True.
LinkLabel1.LinkVisited = True
' Call the Process.Start method to open the default browser
' with a URL:
System.Diagnostics.Process.Start("166.111.170.249")
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -