MDIForm1.frm
资源名称:lx.rar [点击查看]
上传用户:sdxhx123
上传日期:2022-08-06
资源大小:3453k
文件大小:6k
源码类别:
数值算法/人工智能
开发平台:
Visual Basic
- VERSION 5.00
- Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
- Begin VB.MDIForm MDIForm1
- BackColor = &H8000000C&
- Caption = "回溯法实现背包问题之动态教程"
- ClientHeight = 8760
- ClientLeft = 60
- ClientTop = 450
- ClientWidth = 13395
- Icon = "MDIForm1.frx":0000
- LinkTopic = "MDIForm1"
- Picture = "MDIForm1.frx":030A
- StartUpPosition = 2 '屏幕中心
- Begin MSComctlLib.ImageList ImageList1
- Left = 5160
- Top = 0
- _ExtentX = 1005
- _ExtentY = 1005
- BackColor = -2147483643
- ImageWidth = 16
- ImageHeight = 16
- MaskColor = 12632256
- _Version = 393216
- BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
- NumListImages = 7
- BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "MDIForm1.frx":11926
- Key = "intro"
- EndProperty
- BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "MDIForm1.frx":11C40
- Key = "casus"
- EndProperty
- BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "MDIForm1.frx":11E9F
- Key = "app"
- EndProperty
- BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "MDIForm1.frx":12122
- Key = "help"
- EndProperty
- BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "MDIForm1.frx":123E4
- Key = "info"
- EndProperty
- BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "MDIForm1.frx":124EA
- Key = "exit"
- EndProperty
- BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
- Picture = "MDIForm1.frx":12786
- Key = "flash"
- EndProperty
- EndProperty
- End
- Begin MSComctlLib.Toolbar Toolbar1
- Align = 1 'Align Top
- Height = 555
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 13395
- _ExtentX = 23627
- _ExtentY = 979
- ButtonWidth = 979
- ButtonHeight = 926
- Appearance = 1
- Style = 1
- ImageList = "ImageList1"
- _Version = 393216
- BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
- NumButtons = 9
- BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Caption = " 介绍"
- Key = "intro"
- Object.ToolTipText = "对命题的一般性介绍"
- ImageKey = "intro"
- EndProperty
- BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Caption = "示例"
- Key = "casus"
- Object.ToolTipText = "命题实现的动态演示"
- ImageKey = "casus"
- EndProperty
- BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Caption = "应用"
- Key = "app"
- Object.ToolTipText = "命题在实际生活中的应用"
- ImageKey = "app"
- EndProperty
- BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Style = 3
- EndProperty
- BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Object.Visible = 0 'False
- Caption = "帮助"
- Key = "help"
- Object.ToolTipText = "关于本教程的使用帮助"
- ImageKey = "help"
- EndProperty
- BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Caption = "关于"
- Key = "about"
- Object.ToolTipText = "显示关于该软件的相关信息"
- ImageKey = "info"
- EndProperty
- BeginProperty Button7 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Style = 3
- EndProperty
- BeginProperty Button8 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Caption = "退出"
- Key = "exit"
- Object.ToolTipText = "退出软件"
- ImageKey = "exit"
- EndProperty
- BeginProperty Button9 {66833FEA-8583-11D1-B16A-00C0F0283628}
- Object.Visible = 0 'False
- Caption = "刷新"
- Key = "flash"
- Object.ToolTipText = "关闭MDI窗体中所有的子窗体"
- ImageKey = "flash"
- EndProperty
- EndProperty
- End
- Begin VB.Menu mnuPopup
- Caption = "Popup"
- Visible = 0 'False
- Begin VB.Menu mnuOpenWin
- Caption = "打开窗口"
- End
- Begin VB.Menu mnuHide
- Caption = "隐藏窗口"
- End
- Begin VB.Menu mnuLine
- Caption = "-"
- End
- Begin VB.Menu mnuAbout
- Caption = "关于"
- End
- Begin VB.Menu mnuExit
- Caption = "退出"
- End
- End
- End
- Attribute VB_Name = "MDIForm1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
- Select Case Button.Key
- Case "casus"
- frmPak.Show
- Case "app"
- frmCar.Show
- Case "intro"
- FrmTeach.Show
- Case "about"
- frmAbout.Show
- Case "exit"
- End '退出应用程序
- Case "flash"
- '关闭MDI窗体中所有的子窗体
- Screen.MousePointer = vbHourglass
- Do While Not (Me.ActiveForm Is Nothing)
- Unload Me.ActiveForm
- Loop
- Screen.MousePointer = vbDefault
- End Select
- End Sub