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

📄 frmmenus.frm

📁 Visual Basic 6 大学教程的代码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmMenus 
   Caption         =   "Fig. 10.33: Menus"
   ClientHeight    =   1155
   ClientLeft      =   2460
   ClientTop       =   2790
   ClientWidth     =   3915
   LinkTopic       =   "Form1"
   ScaleHeight     =   1155
   ScaleWidth      =   3915
   Begin VB.Menu mnuFile 
      Caption         =   "&File"
      Index           =   1
      NegotiatePosition=   2  'Middle
      WindowList      =   -1  'True
      Begin VB.Menu mnuitmSave 
         Caption         =   "&Save"
         Shortcut        =   ^S
      End
      Begin VB.Menu mnuitmSaveAs 
         Caption         =   "Save &As..."
      End
      Begin VB.Menu mnuitmSeparator 
         Caption         =   "-"
      End
      Begin VB.Menu mnuitmPrint 
         Caption         =   "&Print"
         Shortcut        =   ^P
      End
   End
   Begin VB.Menu mnuGraphics 
      Caption         =   "&Graphics"
      Index           =   2
      Begin VB.Menu mnuitmSnap 
         Caption         =   "Snap"
         Checked         =   -1  'True
      End
      Begin VB.Menu mnuSpecial 
         Caption         =   "Special"
         Begin VB.Menu mnuitmRotate 
            Caption         =   "Rotate..."
         End
         Begin VB.Menu mnuitmFlip 
            Caption         =   "Flip"
         End
         Begin VB.Menu mnuitmJoin 
            Caption         =   "Join"
         End
      End
   End
End
Attribute VB_Name = "frmMenus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

⌨️ 快捷键说明

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