XPDUnitProject.dfm
上传用户:yjb1804
上传日期:2021-01-30
资源大小:3105k
文件大小:3k
源码类别:

Email服务器

开发平台:

Delphi

  1. object XPDUnitProjectForm: TXPDUnitProjectForm
  2.   Left = 784
  3.   Top = 526
  4.   Width = 320
  5.   Height = 210
  6.   BorderStyle = bsSizeToolWin
  7.   Caption = 'New DUnit Project...'
  8.   Color = clBtnFace
  9.   Constraints.MaxHeight = 210
  10.   Constraints.MinHeight = 210
  11.   Constraints.MinWidth = 320
  12.   Font.Charset = DEFAULT_CHARSET
  13.   Font.Color = clWindowText
  14.   Font.Height = -11
  15.   Font.Name = 'MS Sans Serif'
  16.   Font.Style = []
  17.   OldCreateOrder = True
  18.   Position = poScreenCenter
  19.   OnClose = FormClose
  20.   OnCreate = FormCreate
  21.   OnDestroy = FormDestroy
  22.   OnShow = FormShow
  23.   PixelsPerInch = 96
  24.   TextHeight = 13
  25.   object Label1: TLabel
  26.     Left = 5
  27.     Top = 1
  28.     Width = 95
  29.     Height = 18
  30.     AutoSize = False
  31.     Caption = 'Project &name'
  32.     Layout = tlCenter
  33.   end
  34.   object Label2: TLabel
  35.     Left = 5
  36.     Top = 42
  37.     Width = 95
  38.     Height = 18
  39.     AutoSize = False
  40.     Caption = 'Project filename'
  41.     Layout = tlCenter
  42.   end
  43.   object Label3: TLabel
  44.     Left = 5
  45.     Top = 85
  46.     Width = 95
  47.     Height = 18
  48.     AutoSize = False
  49.     Caption = 'Project &path'
  50.     Layout = tlCenter
  51.   end
  52.   object SelectPath: TSpeedButton
  53.     Left = 284
  54.     Top = 103
  55.     Width = 23
  56.     Height = 22
  57.     Anchors = [akTop, akRight]
  58.     Caption = '...'
  59.     Flat = True
  60.     Font.Charset = DEFAULT_CHARSET
  61.     Font.Color = clWindowText
  62.     Font.Height = -11
  63.     Font.Name = 'MS Sans Serif'
  64.     Font.Style = [fsBold]
  65.     ParentFont = False
  66.     OnClick = SelectPathClick
  67.   end
  68.   object ProjectName: TEdit
  69.     Left = 5
  70.     Top = 20
  71.     Width = 302
  72.     Height = 21
  73.     Anchors = [akLeft, akTop, akRight]
  74.     TabOrder = 0
  75.     OnChange = ProjectNameChange
  76.   end
  77.   object ProjectFileName: TEdit
  78.     Left = 5
  79.     Top = 61
  80.     Width = 302
  81.     Height = 21
  82.     TabStop = False
  83.     Anchors = [akLeft, akTop, akRight]
  84.     Color = clBtnFace
  85.     ReadOnly = True
  86.     TabOrder = 1
  87.   end
  88.   object ProjectPath: TEdit
  89.     Left = 5
  90.     Top = 104
  91.     Width = 273
  92.     Height = 21
  93.     Anchors = [akLeft, akTop, akRight]
  94.     TabOrder = 2
  95.   end
  96.   object BitBtn1: TBitBtn
  97.     Left = 151
  98.     Top = 154
  99.     Width = 75
  100.     Height = 25
  101.     Anchors = [akRight, akBottom]
  102.     Caption = '&Cancel'
  103.     TabOrder = 4
  104.     Kind = bkCancel
  105.   end
  106.   object CreateProject: TBitBtn
  107.     Left = 232
  108.     Top = 154
  109.     Width = 75
  110.     Height = 25
  111.     Anchors = [akRight, akBottom]
  112.     Caption = 'C&reate'
  113.     TabOrder = 5
  114.     OnClick = CreateProjectClick
  115.     Kind = bkOK
  116.   end
  117.   object AddToProjectGroup: TCheckBox
  118.     Left = 5
  119.     Top = 132
  120.     Width = 224
  121.     Height = 17
  122.     Caption = '&Add to current IDE project group'
  123.     TabOrder = 3
  124.   end
  125. end