Text DFM上下文菜单选项的含义是什么?

时间:2012-06-08 22:43:52

标签: delphi contextmenu dfm

当您右键单击Delphi表单时,您将获得弹出上下文菜单。底部选项是文本DFM 。可以选中或不选中此选项。选中或取消选中此选项时的含义是什么?

enter image description here

1 个答案:

答案 0 :(得分:16)

此选项用于选择用于保存表单的格式(二进制或文本格式)。

如果您使用文本DFM选项,表单(dfm文件)将以这样的文本格式存储

object Form1: TForm1
  Left = 451
  Top = 290
  Caption = 'Form38'
  ClientHeight = 300
  ClientWidth = 635
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
end