Unit1.dfm 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. object Form1: TForm1
  2. Left = 245
  3. Top = 173
  4. Caption = 'Language demo'
  5. ClientHeight = 283
  6. ClientWidth = 496
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'MS Sans Serif'
  12. Font.Style = []
  13. Menu = MainMenu1
  14. OldCreateOrder = True
  15. OnCreate = FormCreate
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object AboutScene: TMemo
  19. Left = 296
  20. Top = 4
  21. Width = 179
  22. Height = 274
  23. Lines.Strings = (
  24. 'AboutGLScene')
  25. TabOrder = 0
  26. end
  27. object GroupBox1: TGroupBox
  28. Left = 0
  29. Top = 4
  30. Width = 296
  31. Height = 274
  32. Caption = 'GroupBox1'
  33. TabOrder = 1
  34. object Label1: TLabel
  35. Left = 102
  36. Top = 100
  37. Width = 32
  38. Height = 13
  39. Caption = 'Label1'
  40. Color = clBtnFace
  41. ParentColor = False
  42. end
  43. object Button: TButton
  44. Left = 22
  45. Top = 28
  46. Width = 75
  47. Height = 25
  48. Caption = 'Button'
  49. TabOrder = 0
  50. end
  51. object Panel1: TPanel
  52. Left = 142
  53. Top = 172
  54. Width = 128
  55. Height = 50
  56. Caption = 'Panel1'
  57. TabOrder = 1
  58. end
  59. end
  60. object MainMenu1: TMainMenu
  61. Left = 168
  62. Top = 72
  63. object mOption: TMenuItem
  64. Caption = 'Option'
  65. object mLanguage: TMenuItem
  66. Caption = 'Language'
  67. object mEnglish: TMenuItem
  68. Caption = 'English'
  69. OnClick = mEnglishClick
  70. end
  71. object mRussian: TMenuItem
  72. Caption = 'Russian'
  73. OnClick = mRussianClick
  74. end
  75. object mDeutsch: TMenuItem
  76. Caption = 'Deutsch'
  77. OnClick = mDeutschClick
  78. end
  79. end
  80. end
  81. object mHelp: TMenuItem
  82. Caption = 'Help'
  83. end
  84. end
  85. object GLSLanguage1: TGLSLanguage
  86. Left = 168
  87. Top = 32
  88. end
  89. end