delphi 不显示放上去的组件代码
delphi中Button放上去之后,都不在代码中显示其创建过程,真是受不了啊,自己写代码都找不到参照的
答案:不是不显示是你不会看,下面就是一个form 带一个button的delphi代码
object Form1: TForm1
Left = 192
Top = 107
Width = 696
Height = 480
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Button1: TButton
Left = 232
Top = 128
Width = 75
Height = 25
Caption = 'Button1'
TabOrder = 0
end
end
查看方法在窗体form上右键view as text
其他:type
Button1: TButton;
Button2: TButton;
这个算不算 菜鸟飞过 创建一个 Project, 添加 2个窗体, 第一个窗体设置成 MDIForm(窗体属性FormStyle - fsMDIForm, 也就是主窗体), 另一个默认设置.
上一个:懂delphi 请进
下一个:delphi indy控件 ftp 获取文件夹名称