EBarsDemoRating.dfm
上传用户:yjb1804
上传日期:2021-01-30
资源大小:3105k
文件大小:2k
源码类别:

Email服务器

开发平台:

Delphi

  1. object EBarsDemoRatingForm: TEBarsDemoRatingForm
  2.   Left = 399
  3.   Top = 220
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Demo rating '
  7.   ClientHeight = 254
  8.   ClientWidth = 306
  9.   Color = 15921902
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   Position = poScreenCenter
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 8
  20.     Top = 16
  21.     Width = 256
  22.     Height = 13
  23.     Caption = 'How would you rate the quality of this demo?'
  24.     Font.Charset = DEFAULT_CHARSET
  25.     Font.Color = clWindowText
  26.     Font.Height = -11
  27.     Font.Name = 'MS Sans Serif'
  28.     Font.Style = [fsBold]
  29.     ParentFont = False
  30.   end
  31.   object Label2: TLabel
  32.     Left = 8
  33.     Top = 48
  34.     Width = 22
  35.     Height = 13
  36.     Caption = 'Poor'
  37.   end
  38.   object Label3: TLabel
  39.     Left = 252
  40.     Top = 48
  41.     Width = 43
  42.     Height = 13
  43.     Caption = 'Excellent'
  44.   end
  45.   object Label4: TLabel
  46.     Left = 8
  47.     Top = 80
  48.     Width = 263
  49.     Height = 13
  50.     Caption = 'Tell us your opinion about this demo (optional)'
  51.     Font.Charset = DEFAULT_CHARSET
  52.     Font.Color = clWindowText
  53.     Font.Height = -11
  54.     Font.Name = 'MS Sans Serif'
  55.     Font.Style = [fsBold]
  56.     ParentFont = False
  57.   end
  58.   object memRateDescrip: TMemo
  59.     Left = 8
  60.     Top = 96
  61.     Width = 289
  62.     Height = 121
  63.     Color = 15921902
  64.     TabOrder = 1
  65.   end
  66.   object btnSend: TButton
  67.     Left = 224
  68.     Top = 224
  69.     Width = 75
  70.     Height = 25
  71.     Caption = 'Email...'
  72.     Enabled = False
  73.     TabOrder = 2
  74.     OnClick = btnSendClick
  75.   end
  76.   object rgRate: TRadioGroup
  77.     Left = 44
  78.     Top = 32
  79.     Width = 201
  80.     Height = 38
  81.     Columns = 5
  82.     Items.Strings = (
  83.       '1'
  84.       '2'
  85.       '3'
  86.       '4'
  87.       '5')
  88.     TabOrder = 0
  89.     OnClick = rgRateChange
  90.   end
  91. end