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

2D图形编程

开发平台:

Delphi

  1. object MainForm: TMainForm
  2.   Left = 0
  3.   Top = 0
  4.   BorderStyle = bsSingle
  5.   Caption = 'Targets'#39'n'#39'Panels'
  6.   ClientHeight = 306
  7.   ClientWidth = 537
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'Tahoma'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   Scaled = False
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object Label1: TLabel
  22.     Left = 8
  23.     Top = 5
  24.     Width = 121
  25.     Height = 13
  26.     Caption = 'Primary Rendering Panel:'
  27.   end
  28.   object Label2: TLabel
  29.     Left = 270
  30.     Top = 5
  31.     Width = 126
  32.     Height = 13
  33.     Caption = 'Auxiliary Rendering Panel:'
  34.   end
  35.   object PrimaryPanel: TPanel
  36.     Left = 8
  37.     Top = 24
  38.     Width = 256
  39.     Height = 256
  40.     TabOrder = 0
  41.   end
  42.   object AuxiliaryPanel: TPanel
  43.     Left = 270
  44.     Top = 24
  45.     Width = 256
  46.     Height = 256
  47.     TabOrder = 1
  48.   end
  49. end