Main.dfm 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. object MainForm: TMainForm
  2. Left = 0
  3. Top = 0
  4. Caption = 'Chrono Demo'
  5. ClientHeight = 186
  6. ClientWidth = 436
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. Position = poScreenCenter
  15. OnCreate = FormCreate
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object lblElapsedTime: TLabel
  19. Left = 148
  20. Top = 80
  21. Width = 253
  22. Height = 13
  23. AutoSize = False
  24. end
  25. object lblElapsedTimeLong: TLabel
  26. Left = 148
  27. Top = 99
  28. Width = 253
  29. Height = 13
  30. AutoSize = False
  31. end
  32. object Label3: TLabel
  33. Left = 119
  34. Top = 24
  35. Width = 78
  36. Height = 29
  37. Caption = 'Timer:'
  38. Font.Charset = DEFAULT_CHARSET
  39. Font.Color = clWindowText
  40. Font.Height = -24
  41. Font.Name = 'Tahoma'
  42. Font.Style = [fsBold]
  43. ParentFont = False
  44. end
  45. object lblTimer: TLabel
  46. Left = 203
  47. Top = 24
  48. Width = 108
  49. Height = 29
  50. ParentCustomHint = False
  51. AutoSize = False
  52. Caption = '00:00:00'
  53. Color = clBtnFace
  54. Font.Charset = DEFAULT_CHARSET
  55. Font.Color = clWindowText
  56. Font.Height = -24
  57. Font.Name = 'Tahoma'
  58. Font.Style = [fsBold]
  59. ParentColor = False
  60. ParentFont = False
  61. ParentShowHint = False
  62. ShowAccelChar = False
  63. ShowHint = False
  64. Transparent = True
  65. end
  66. object lblShortFormat: TLabel
  67. Left = 57
  68. Top = 80
  69. Width = 63
  70. Height = 13
  71. Caption = 'ElapsedTime:'
  72. end
  73. object lblLongFormat: TLabel
  74. Left = 57
  75. Top = 99
  76. Width = 86
  77. Height = 13
  78. Caption = 'ElapsedTimeLong:'
  79. end
  80. object Label1: TLabel
  81. Left = 24
  82. Top = 128
  83. Width = 84
  84. Height = 13
  85. Caption = 'Precission Format'
  86. end
  87. object btnChrono: TButton
  88. Left = 175
  89. Top = 145
  90. Width = 75
  91. Height = 25
  92. Caption = 'Start'
  93. TabOrder = 0
  94. OnClick = btnChronoClick
  95. end
  96. object cbPrecissionFormat: TComboBox
  97. Left = 24
  98. Top = 147
  99. Width = 105
  100. Height = 21
  101. Style = csDropDownList
  102. ItemIndex = 0
  103. TabOrder = 1
  104. Text = 'Float'
  105. Items.Strings = (
  106. 'Float'
  107. 'Round'
  108. 'Truncate')
  109. end
  110. object tiChrono: TTimer
  111. Enabled = False
  112. Interval = 500
  113. OnTimer = tiChronoTimer
  114. Left = 304
  115. Top = 128
  116. end
  117. end