Unit1.dfm 736 B

12345678910111213141516171819202122232425262728293031323334353637
  1. object Form1: TForm1
  2. Left = 0
  3. Top = 0
  4. Caption = 'Formulario'
  5. ClientHeight = 269
  6. ClientWidth = 317
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. Menu = mm1
  14. OldCreateOrder = False
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object mm1: TMainMenu
  18. Left = 8
  19. Top = 8
  20. object Colores1: TMenuItem
  21. Caption = 'Colores'
  22. object Rojo1: TMenuItem
  23. Caption = 'Rojo'
  24. OnClick = Rojo1Click
  25. end
  26. object Verde1: TMenuItem
  27. Caption = 'Verde'
  28. OnClick = Verde1Click
  29. end
  30. object Azul1: TMenuItem
  31. Caption = 'Azul'
  32. OnClick = Azul1Click
  33. end
  34. end
  35. end
  36. end