MainFm.dfm
上传用户:ctlcnc
上传日期:2021-12-10
资源大小:4933k
文件大小:1k
源码类别:

2D图形编程

开发平台:

Delphi

  1. object MainForm: TMainForm
  2.   Left = 192
  3.   Top = 100
  4.   Caption = 'Isometric Demo'
  5.   ClientHeight = 500
  6.   ClientWidth = 500
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   Position = poScreenCenter
  15.   Scaled = False
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   OnKeyPress = FormKeyPress
  19.   OnMouseMove = FormMouseMove
  20.   OnResize = FormResize
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object StatusBar1: TStatusBar
  24.     Left = 0
  25.     Top = 481
  26.     Width = 500
  27.     Height = 19
  28.     Panels = <>
  29.     SimplePanel = True
  30.     SimpleText = 'Notice that you can resize this window!'
  31.   end
  32. end