mainunit.dfm
来自「Delphi7编程80例(完全版)」· DFM 代码 · 共 114 行
DFM
114 行
object Main: TMain
Left = 219
Top = 138
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Main'
ClientHeight = 300
ClientWidth = 400
Color = clBtnFace
Font.Charset = GB2312_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = '宋体'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 14
object StaticText1: TStaticText
Left = 32
Top = 40
Width = 32
Height = 18
Caption = '盘符'
TabOrder = 0
end
object ComboBox1: TComboBox
Left = 80
Top = 32
Width = 273
Height = 22
ItemHeight = 14
TabOrder = 1
end
object StaticText3: TStaticText
Left = 56
Top = 120
Width = 228
Height = 18
Caption = '总容量 M'
TabOrder = 2
end
object Edit1: TEdit
Left = 120
Top = 112
Width = 145
Height = 22
ReadOnly = True
TabOrder = 3
end
object StaticText4: TStaticText
Left = 40
Top = 160
Width = 242
Height = 18
Caption = '剩余空间 M'
TabOrder = 4
end
object Edit2: TEdit
Left = 120
Top = 152
Width = 145
Height = 22
ReadOnly = True
TabOrder = 5
end
object Button1: TButton
Left = 144
Top = 224
Width = 75
Height = 25
Caption = '确定'
TabOrder = 6
OnClick = Button1Click
end
object ListBox1: TListBox
Left = 312
Top = 144
Width = 73
Height = 57
ItemHeight = 14
Items.Strings = (
'A'
'B'
'C'
'D'
'E'
'F'
'G'
'H'
'I'
'J'
'K'
'L'
'M'
'N'
'O'
'P'
'Q'
'R'
'S'
'T'
'U'
'V'
'W'
'X'
'Y'
'Z')
TabOrder = 7
Visible = False
end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?