⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itemdetailsunit.dfm

📁 Gantt source file example to use in delphi 7
💻 DFM
字号:
object ItemDetailsForm: TItemDetailsForm
  Left = 282
  Top = 128
  Width = 829
  Height = 401
  Caption = 'Item Details'
  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 Label1: TLabel
    Left = 89
    Top = 47
    Width = 43
    Height = 13
    Caption = 'Item Title'
  end
  object Label2: TLabel
    Left = 86
    Top = 76
    Width = 46
    Height = 13
    Caption = 'Item Style'
  end
  object Label3: TLabel
    Left = 18
    Top = 134
    Width = 114
    Height = 13
    Caption = 'Item Background Colour'
  end
  object Label4: TLabel
    Left = 71
    Top = 196
    Width = 61
    Height = 13
    Caption = 'Item Fill Style'
  end
  object Label5: TLabel
    Left = 61
    Top = 225
    Width = 71
    Height = 13
    Caption = 'Item Start Date'
  end
  object Label6: TLabel
    Left = 64
    Top = 252
    Width = 68
    Height = 13
    Caption = 'Item End Date'
  end
  object Label7: TLabel
    Left = 44
    Top = 166
    Width = 87
    Height = 13
    Caption = 'Item Border Colour'
  end
  object Label8: TLabel
    Left = 80
    Top = 105
    Width = 53
    Height = 13
    Caption = 'Item Status'
  end
  object Label11: TLabel
    Left = 451
    Top = 125
    Width = 79
    Height = 13
    Caption = 'Item Text Details'
  end
  object Label9: TLabel
    Left = 44
    Top = 280
    Width = 90
    Height = 13
    Caption = 'Percent Completed'
  end
  object Panel1: TPanel
    Left = 0
    Top = 0
    Width = 821
    Height = 26
    Align = alTop
    Caption = 'Create / Edit Task Item'
    Color = clMoneyGreen
    Font.Charset = ANSI_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
    TabOrder = 0
  end
  object Panel2: TPanel
    Left = 0
    Top = 334
    Width = 821
    Height = 34
    Align = alBottom
    TabOrder = 1
    object Button1: TButton
      Left = 425
      Top = 4
      Width = 75
      Height = 25
      Caption = '&Cancel'
      ModalResult = 2
      TabOrder = 0
    end
    object Button2: TButton
      Left = 344
      Top = 4
      Width = 75
      Height = 25
      Caption = '&Ok'
      Default = True
      ModalResult = 1
      TabOrder = 1
    end
  end
  object ItemNameEdit: TEdit
    Left = 144
    Top = 43
    Width = 299
    Height = 21
    TabOrder = 2
    Text = 'New Item'
  end
  object StyleComboBox: TComboBox
    Left = 144
    Top = 72
    Width = 225
    Height = 21
    Style = csDropDownList
    ItemHeight = 13
    ItemIndex = 0
    TabOrder = 3
    Text = 'Block'
    Items.Strings = (
      'Block'
      'Arrow'
      'Ball'
      'Ring'
      'Finish'
      'BenchMark'
      'End'
      'Diamond Group'
      'Point Group'
      'Shard Group')
  end
  object ItemColorBox: TColorBox
    Left = 144
    Top = 131
    Width = 145
    Height = 22
    Selected = clMoneyGreen
    ItemHeight = 16
    TabOrder = 4
  end
  object FillComboBox: TComboBox
    Left = 144
    Top = 191
    Width = 146
    Height = 21
    ItemHeight = 13
    ItemIndex = 0
    TabOrder = 5
    Text = 'Solid'
    Items.Strings = (
      'Solid'
      'Clear'
      'Horizontal'
      'Vertical'
      'FDiagonal'
      'BDiagonal'
      'Cross'
      'DiagCross')
  end
  object PenColorBox: TColorBox
    Left = 144
    Top = 161
    Width = 145
    Height = 22
    Selected = clNavy
    ItemHeight = 16
    TabOrder = 6
  end
  object StatusComboBox: TComboBox
    Left = 144
    Top = 101
    Width = 225
    Height = 21
    ItemHeight = 13
    ItemIndex = 0
    TabOrder = 7
    Text = 'gsNoActivity'
    Items.Strings = (
      'gsNoActivity'
      'gsWorkInProgress'
      'gsBenchmark'
      'gsHeldForResource'
      'gsCancelled'
      'gsDeferred')
  end
  object GroupBox1: TGroupBox
    Left = 450
    Top = 37
    Width = 362
    Height = 85
    Caption = 'Item Linking'
    TabOrder = 8
    object Label10: TLabel
      Left = 14
      Top = 50
      Width = 47
      Height = 13
      Caption = 'Link Type'
    end
    object hardCheckBox: TCheckBox
      Left = 66
      Top = 22
      Width = 185
      Height = 17
      Caption = 'Use Hard Link when Linking'
      TabOrder = 0
    end
    object linktypeCombo: TComboBox
      Left = 66
      Top = 46
      Width = 187
      Height = 21
      ItemHeight = 13
      ItemIndex = 0
      TabOrder = 1
      Text = 'lsFinishStart'
      Items.Strings = (
        'lsFinishStart'
        'lsStartFinish'
        'lsStartStart'
        'lsFinishFinish')
    end
  end
  object StartTimeedit: TDateTimePicker
    Left = 251
    Top = 221
    Width = 78
    Height = 21
    CalAlignment = dtaLeft
    Date = 39188.583807037
    Time = 39188.583807037
    DateFormat = dfShort
    DateMode = dmComboBox
    Kind = dtkTime
    ParseInput = False
    TabOrder = 9
  end
  object StartDateEdit: TDateTimePicker
    Left = 144
    Top = 221
    Width = 106
    Height = 21
    CalAlignment = dtaLeft
    Date = 39188.583807037
    Time = 39188.583807037
    DateFormat = dfShort
    DateMode = dmComboBox
    Kind = dtkDate
    ParseInput = False
    TabOrder = 10
  end
  object EndTimePicker: TDateTimePicker
    Left = 251
    Top = 249
    Width = 78
    Height = 21
    CalAlignment = dtaLeft
    Date = 39188.583807037
    Time = 39188.583807037
    DateFormat = dfShort
    DateMode = dmComboBox
    Kind = dtkTime
    ParseInput = False
    TabOrder = 11
  end
  object EndDatePicker: TDateTimePicker
    Left = 144
    Top = 249
    Width = 106
    Height = 21
    CalAlignment = dtaLeft
    Date = 39188.583807037
    Time = 39188.583807037
    DateFormat = dfShort
    DateMode = dmComboBox
    Kind = dtkDate
    ParseInput = False
    TabOrder = 12
  end
  object Memo1: TMemo
    Left = 451
    Top = 143
    Width = 355
    Height = 184
    TabOrder = 13
  end
  object percentSpinEdit: TSpinEdit
    Left = 143
    Top = 277
    Width = 67
    Height = 22
    MaxValue = 100
    MinValue = 0
    TabOrder = 14
    Value = 0
  end
  object OpenPictureDialog1: TOpenPictureDialog
    Left = 362
    Top = 147
  end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -