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

📄 frmlegend.frm

📁 solidworks 2007 二次开发
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmLegend 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Moldability - Legend"
   ClientHeight    =   2340
   ClientLeft      =   45
   ClientTop       =   390
   ClientWidth     =   4905
   Icon            =   "frmLegend.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2340
   ScaleWidth      =   4905
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdHelp 
      Caption         =   "Help"
      Height          =   495
      Left            =   3120
      TabIndex        =   8
      Top             =   1560
      Width           =   1215
   End
   Begin VB.CommandButton cmdDone 
      Caption         =   "Done"
      Height          =   495
      Left            =   3120
      TabIndex        =   7
      Top             =   840
      Width           =   1215
   End
   Begin VB.CommandButton cmdBack 
      Caption         =   "<< Back"
      Height          =   495
      Left            =   3120
      TabIndex        =   6
      Top             =   120
      Width           =   1215
   End
   Begin VB.Label Label6 
      Caption         =   "Both 1 and  2"
      Height          =   255
      Left            =   1440
      TabIndex        =   5
      Top             =   1920
      Width           =   1215
   End
   Begin VB.Label Label5 
      Caption         =   "Direction 2"
      Height          =   255
      Left            =   1440
      TabIndex        =   4
      Top             =   1560
      Width           =   1215
   End
   Begin VB.Label Label4 
      Caption         =   "Marginal 2"
      Height          =   255
      Left            =   1440
      TabIndex        =   3
      Top             =   1200
      Width           =   1215
   End
   Begin VB.Label Label3 
      Caption         =   "Zero Draft"
      Height          =   255
      Left            =   1440
      TabIndex        =   2
      Top             =   840
      Width           =   1215
   End
   Begin VB.Label Label2 
      Caption         =   "Marginal 1"
      Height          =   255
      Left            =   1440
      TabIndex        =   1
      Top             =   480
      Width           =   1215
   End
   Begin VB.Label Label1 
      Caption         =   "Direction 1"
      Height          =   255
      Left            =   1440
      TabIndex        =   0
      Top             =   120
      Width           =   1215
   End
   Begin VB.Shape Shape6 
      FillColor       =   &H00FF00FF&
      FillStyle       =   0  'Solid
      Height          =   255
      Left            =   120
      Top             =   1920
      Width           =   1215
   End
   Begin VB.Shape Shape5 
      FillColor       =   &H00FF0000&
      FillStyle       =   0  'Solid
      Height          =   255
      Left            =   120
      Top             =   1560
      Width           =   1215
   End
   Begin VB.Shape Shape4 
      FillColor       =   &H00FFFF00&
      FillStyle       =   0  'Solid
      Height          =   255
      Left            =   120
      Top             =   1200
      Width           =   1215
   End
   Begin VB.Shape Shape3 
      FillColor       =   &H000080FF&
      FillStyle       =   0  'Solid
      Height          =   255
      Left            =   120
      Top             =   840
      Width           =   1215
   End
   Begin VB.Shape Shape2 
      FillColor       =   &H00008080&
      FillStyle       =   0  'Solid
      Height          =   255
      Left            =   120
      Top             =   480
      Width           =   1215
   End
   Begin VB.Shape Shape1 
      FillColor       =   &H0000C000&
      FillStyle       =   0  'Solid
      Height          =   255
      Left            =   120
      Top             =   120
      Width           =   1215
   End
End
Attribute VB_Name = "frmLegend"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdBack_Click()

    RestoreSurfaceColors
    frmDirection.Top = frmLegend.Top
    frmDirection.Left = frmLegend.Left
    frmLegend.Hide
    frmDirection.Show
    
    UnLockUI
    
End Sub

Private Sub cmdDone_Click()

    frmRestoreColor.Show
    
End Sub

Private Sub cmdHelp_Click()
    frmHelpMoldability.Show
End Sub

Private Sub Form_Load()
    SetTopMost Me.hWnd, True
End Sub

Private Sub Form_Unload(Cancel As Integer)
    End
End Sub

⌨️ 快捷键说明

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