ec_inputnumber.lfm 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. inherited ECInputNumberFrame: TECInputNumberFrame
  2. Left = 472
  3. Height = 202
  4. Caption = 'Input number'
  5. ClientHeight = 202
  6. object VariableLabel: TLabel[1]
  7. Left = 6
  8. Height = 13
  9. Top = 8
  10. Width = 42
  11. Caption = 'Variable:'
  12. ParentColor = False
  13. end
  14. object VariableEditButton: TEditButton[2]
  15. AnchorSideLeft.Control = VariableLabel
  16. AnchorSideTop.Control = VariableLabel
  17. AnchorSideTop.Side = asrBottom
  18. Left = 6
  19. Height = 21
  20. Top = 25
  21. Width = 306
  22. Anchors = [akTop, akLeft, akRight]
  23. BorderSpacing.Top = 4
  24. ButtonCaption = '...'
  25. ButtonWidth = 23
  26. MaxLength = 0
  27. NumGlyphs = 1
  28. OnButtonClick = VariableEditButtonButtonClick
  29. OnDblClick = VariableEditButtonButtonClick
  30. OnKeyPress = VariableEditButtonKeyPress
  31. PasswordChar = #0
  32. TabOrder = 1
  33. Text = 'VariableEditButton'
  34. end
  35. object NumDigitsLabel: TLabel[3]
  36. AnchorSideLeft.Control = VariableLabel
  37. AnchorSideTop.Control = VariableEditButton
  38. AnchorSideTop.Side = asrBottom
  39. Left = 6
  40. Height = 13
  41. Top = 54
  42. Width = 82
  43. BorderSpacing.Top = 8
  44. Caption = 'Number of digits:'
  45. ParentColor = False
  46. end
  47. object NumDigitsSpinEdit: TSpinEdit[4]
  48. AnchorSideLeft.Control = NumDigitsLabel
  49. AnchorSideTop.Control = NumDigitsLabel
  50. AnchorSideTop.Side = asrBottom
  51. AnchorSideRight.Control = VariableEditButton
  52. AnchorSideRight.Side = asrBottom
  53. Left = 6
  54. Height = 21
  55. Top = 71
  56. Width = 306
  57. Anchors = [akTop, akLeft, akRight]
  58. BorderSpacing.Top = 4
  59. MaxValue = 8
  60. MinValue = 1
  61. TabOrder = 2
  62. Value = 1
  63. end
  64. end