cxc14.frm
来自「《数据结构》排序演示系统。实现6种内部排序。包括直接插入排序」· FRM 代码 · 共 87 行
FRM
87 行
VERSION 5.00
Begin VB.Form cxc14
BackColor = &H00FFC0FF&
BorderStyle = 0 'None
Caption = "cxc14"
ClientHeight = 4650
ClientLeft = 0
ClientTop = 0
ClientWidth = 6810
LinkTopic = "Form1"
ScaleHeight = 4650
ScaleWidth = 6810
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
BackColor = &H00FFC0C0&
Caption = "确 定"
Height = 615
Left = 2640
Style = 1 'Graphical
TabIndex = 2
Top = 3600
Width = 1215
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = $"cxc14.frx":0000
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00008000&
Height = 1695
Left = 720
TabIndex = 1
Top = 1440
Width = 5415
End
Begin VB.Line Line1
BorderColor = &H00FF8080&
BorderWidth = 2
X1 = 600
X2 = 6240
Y1 = 960
Y2 = 960
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "直接插入排序"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 600
TabIndex = 0
Top = 360
Width = 5415
End
End
Attribute VB_Name = "cxc14"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
cxc14.Hide
cxc03.Show
End Sub
Private Sub Form_Load()
cxc14.Left = (Screen.Width - Width) / 2 '定位
cxc14.Top = (Screen.Height - Height) / 2
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?