MainForm.dfm 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. object frmMain: TfrmMain
  2. Left = 0
  3. Top = 0
  4. Caption = 'CodeGraph DFM Fixture'
  5. ClientHeight = 480
  6. ClientWidth = 640
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -12
  11. Font.Name = 'Segoe UI'
  12. OnCreate = FormCreate
  13. OnDestroy = FormDestroy
  14. PixelsPerInch = 96
  15. TextHeight = 15
  16. object pnlTop: TPanel
  17. Left = 0
  18. Top = 0
  19. Width = 640
  20. Height = 50
  21. Align = alTop
  22. BevelOuter = bvNone
  23. TabOrder = 0
  24. object lblTitle: TLabel
  25. Left = 16
  26. Top = 16
  27. Width = 200
  28. Height = 15
  29. Caption = 'Authentication Service'
  30. end
  31. object btnLogin: TButton
  32. Left = 540
  33. Top = 12
  34. Width = 80
  35. Height = 25
  36. Caption = 'Login'
  37. TabOrder = 0
  38. OnClick = btnLoginClick
  39. end
  40. end
  41. object pnlContent: TPanel
  42. Left = 0
  43. Top = 50
  44. Width = 640
  45. Height = 390
  46. Align = alClient
  47. BevelOuter = bvNone
  48. TabOrder = 1
  49. object edtUsername: TEdit
  50. Left = 16
  51. Top = 16
  52. Width = 300
  53. Height = 23
  54. TabOrder = 0
  55. TextHint = 'Username'
  56. OnChange = edtUsernameChange
  57. end
  58. object edtPassword: TEdit
  59. Left = 16
  60. Top = 48
  61. Width = 300
  62. Height = 23
  63. PasswordChar = '*'
  64. TabOrder = 1
  65. TextHint = 'Password'
  66. OnKeyPress = edtPasswordKeyPress
  67. end
  68. object mmoLog: TMemo
  69. Left = 16
  70. Top = 88
  71. Width = 608
  72. Height = 280
  73. ReadOnly = True
  74. ScrollBars = ssVertical
  75. TabOrder = 2
  76. end
  77. end
  78. object pnlStatus: TStatusBar
  79. Left = 0
  80. Top = 440
  81. Width = 640
  82. Height = 40
  83. Panels = <
  84. item
  85. Width = 200
  86. end
  87. item
  88. Width = 200
  89. end>
  90. end
  91. end