SimpleMain.dfm 816 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. object frmSimpleMain: TfrmSimpleMain
  2. Left = 0
  3. Top = 0
  4. Caption = 'Simple QR Example'
  5. ClientHeight = 414
  6. ClientWidth = 385
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. OnResize = txtDataChange
  16. DesignSize = (
  17. 385
  18. 414)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object imgQR: TImage
  22. Left = 8
  23. Top = 35
  24. Width = 369
  25. Height = 369
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. end
  28. object txtData: TEdit
  29. Left = 8
  30. Top = 8
  31. Width = 369
  32. Height = 21
  33. Anchors = [akLeft, akTop, akRight]
  34. TabOrder = 0
  35. Text = 'https://bitbucket.org/sivv/qr'
  36. OnChange = txtDataChange
  37. end
  38. end