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

📄 submenu_unkown.frm

📁 防红帽子的shell 我是从别处下的,喜欢的朋友自已
💻 FRM
字号:
VERSION 5.00
Begin VB.Form SubMenu_Unkown 
   BorderStyle     =   0  'None
   Caption         =   "Form2"
   ClientHeight    =   3090
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   2835
   LinkTopic       =   "Form2"
   ScaleHeight     =   3090
   ScaleWidth      =   2835
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  '窗口缺省
   Begin Project1.MenuButton MenuButton1 
      Height          =   375
      Left            =   30
      TabIndex        =   0
      Top             =   900
      Width           =   2775
      _ExtentX        =   4895
      _ExtentY        =   661
      Hold_Caption    =   ""
   End
End
Attribute VB_Name = "SubMenu_Unkown"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'****************************************************************************
'人人为我,我为人人
'枕善居汉化收藏整理
'发布日期:2006/11/10
'描    述:仿红帽子操作系统Shell
'网    站:http://www.Mndsoft.com/  (VB6源码博客)
'网    站:http://www.VbDnet.com/   (VB.NET源码博客,主要基于.NET2005)
'e-mail  :Mndsoft@163.com
'e-mail  :Mndsoft@126.com
'OICQ    :88382850
'          如果您有新的好的代码别忘记给枕善居哦!
'****************************************************************************
Public ButtonIndex As Integer

Function ShowForm()
    TransForm Me.hwnd, 0
    Me.Show
    Dim i As Long
    For i = 100 To 255 Step 10
        TransForm Me.hwnd, CByte(i)
        DoEvents
    Next
    TransForm Me.hwnd, 255
End Function

Private Sub MenuButton1_MouseOver()
    FrmStartMenu.Button(ButtonIndex).LoadGUI_OVER
End Sub

Private Sub Form_Load()
    MenuButton1.CapBottom = True
    MenuButton1.CapTop = True
    MenuButton1.Left = 0
    MenuButton1.Top = 0
    MenuButton1.Caption = "未知子菜单"
    MenuButton1.Icon = i_Exclaim
    MenuButton1.SubClassMe
    Me.Width = MenuButton1.Width
    Me.Height = MenuButton1.Top + MenuButton1.Height
End Sub

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
    FrmStartMenu.Button(ButtonIndex).LoadGUI_OVER
End Sub

Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
    Me.Visible = False
    FrmStartMenu.Button(ButtonIndex).LoadGUI
    MenuButton1.UnSubClassMe
End Sub

⌨️ 快捷键说明

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