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

📄 form1.frm

📁 一个闪烁效果的插件
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   645
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   1560
   LinkTopic       =   "Form1"
   ScaleHeight     =   645
   ScaleWidth      =   1560
   StartUpPosition =   3  'Windows Default
   Begin VB.Timer Timer1 
      Interval        =   600
      Left            =   4080
      Top             =   2640
   End
   Begin VB.Label Label1 
      Caption         =   "Label1"
      Height          =   495
      Left            =   360
      TabIndex        =   0
      Top             =   120
      Width           =   1215
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
If Label1.FontSize = 12 Then
    Label1.ForeColor = &HFF0000
    Label1.FontSize = 14
    Label1.FontBold = False
    Form1.Height = Form1.Height + 100
    Form1.Width = Form1.Width + 100
    Form1.Left = Form1.Left - 50
    Form1.Top = Form1.Top - 50
Else
    Label1.ForeColor = &H800000
    Label1.FontSize = 12
    Label1.FontBold = True
    Form1.Height = Form1.Height - 100
    Form1.Width = Form1.Width - 100
    Form1.Left = Form1.Left + 50
    Form1.Top = Form1.Top + 50
End If
End Sub

⌨️ 快捷键说明

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