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

📄 开始界面.frm

📁 单片机学习工具
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form2 
   BorderStyle     =   0  'None
   Caption         =   "Form2"
   ClientHeight    =   4425
   ClientLeft      =   5445
   ClientTop       =   3270
   ClientWidth     =   4845
   LinkTopic       =   "Form2"
   MousePointer    =   11  'Hourglass
   Moveable        =   0   'False
   ScaleHeight     =   4425
   ScaleWidth      =   4845
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Enabled         =   0   'False
      Interval        =   3500
      Left            =   240
      Top             =   3780
   End
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "2006-4-28"
      Height          =   255
      Left            =   2460
      TabIndex        =   2
      Top             =   4080
      Width           =   975
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "版权所有!   "
      Height          =   255
      Left            =   1260
      TabIndex        =   1
      Top             =   4080
      Width           =   975
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "欢迎使用剑锋工作室制作的软件!"
      Height          =   255
      Left            =   1020
      TabIndex        =   0
      Top             =   3780
      Width           =   2715
   End
   Begin VB.Image Image1 
      Height          =   3600
      Left            =   0
      Picture         =   "开始界面.frx":0000
      Top             =   0
      Width           =   4830
   End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
'Form1.Hide
'Me.Show
Timer1.Enabled = True

End Sub

Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Timer1.Enabled = False
Unload Form2
Form1.Show
End Sub

Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Timer1.Enabled = False
Unload Form2
Form1.Show
End Sub

Private Sub Timer1_Timer()
Unload Form2
Form1.Show
Timer1.Enabled = False
End Sub

⌨️ 快捷键说明

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