fLanguageD.dfm 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. OnCreate = FormCreate
  15. TextHeight = 13
  16. object AboutScene: TMemo
  17. Left = 296
  18. Top = 4
  19. Width = 179
  20. Height = 274
  21. Lines.Strings = (
  22. 'AboutGLScene')
  23. TabOrder = 0
  24. end
  25. object GroupBox1: TGroupBox
  26. Left = 0
  27. Top = 4
  28. Width = 296
  29. Height = 274
  30. Caption = 'GroupBox1'
  31. TabOrder = 1
  32. object Label1: TLabel
  33. Left = 102
  34. Top = 100
  35. Width = 32
  36. Height = 13
  37. Caption = 'Label1'
  38. Color = clBtnFace
  39. ParentColor = False
  40. end
  41. object Button: TButton
  42. Left = 22
  43. Top = 28
  44. Width = 75
  45. Height = 25
  46. Caption = 'Button'
  47. TabOrder = 0
  48. end
  49. object Panel1: TPanel
  50. Left = 142
  51. Top = 172
  52. Width = 128
  53. Height = 50
  54. Caption = 'Panel1'
  55. TabOrder = 1
  56. end
  57. end
  58. object MainMenu1: TMainMenu
  59. Left = 168
  60. Top = 72
  61. object mOption: TMenuItem
  62. Caption = 'Option'
  63. object mLanguage: TMenuItem
  64. Caption = 'Language'
  65. object mEnglish: TMenuItem
  66. Caption = 'English'
  67. OnClick = mEnglishClick
  68. end
  69. object mRussian: TMenuItem
  70. Caption = 'Russian'
  71. OnClick = mRussianClick
  72. end
  73. object mDeutsch: TMenuItem
  74. Caption = 'Deutsch'
  75. OnClick = mDeutschClick
  76. end
  77. end
  78. end
  79. object mHelp: TMenuItem
  80. Caption = 'Help'
  81. end
  82. end
  83. object GLSLanguage1: TGLSLanguage
  84. Left = 168
  85. Top = 32
  86. end
  87. end