⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flyingseatcalc.dfm

📁 DevExpress公司出品的Borland Delphi和C++ Builder的控件(包含完整源代码)。 ExpressSpreadSheet:交叉数据表格控件。 一款Delphi
💻 DFM
字号:
object FlyingSeatCalcForm: TFlyingSeatCalcForm
  Left = 317
  Top = 163
  BorderStyle = bsDialog
  Caption = 'Seat Weights'
  ClientHeight = 283
  ClientWidth = 231
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Position = poScreenCenter
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object lblFormula: TLabel
    Left = 8
    Top = 200
    Width = 72
    Height = 13
    Caption = 'Formula for Lbs'
  end
  object GroupBox1: TGroupBox
    Left = 8
    Top = 8
    Width = 201
    Height = 89
    Caption = ' Left Hand Seat '
    TabOrder = 0
    object lblLsPrime: TLabel
      Left = 16
      Top = 40
      Width = 65
      Height = 13
      Caption = 'Weight in Lbs'
    end
    object lblLsLbs: TLabel
      Left = 120
      Top = 40
      Width = 65
      Height = 13
      Caption = 'Weight in Lbs'
      Visible = False
    end
    object rbLsKgs: TRadioButton
      Left = 16
      Top = 16
      Width = 49
      Height = 17
      Caption = 'Kilos'
      TabOrder = 0
      OnClick = rbLsKgsClick
    end
    object rbLsLbs: TRadioButton
      Tag = 1
      Left = 64
      Top = 16
      Width = 49
      Height = 17
      Caption = 'LBS'
      Checked = True
      TabOrder = 1
      TabStop = True
      OnClick = rbLsKgsClick
    end
    object rbLsStones: TRadioButton
      Tag = 2
      Left = 104
      Top = 16
      Width = 89
      Height = 17
      Caption = 'Stones && Lbs'
      TabOrder = 2
      OnClick = rbLsKgsClick
    end
    object efLsPrime: TEdit
      Left = 16
      Top = 56
      Width = 73
      Height = 21
      MaxLength = 3
      TabOrder = 3
      Text = '0'
      OnExit = meLsPrimeExit
      OnKeyPress = EdtKeyPress
    end
    object efLsLbs: TEdit
      Left = 120
      Top = 56
      Width = 33
      Height = 21
      MaxLength = 2
      TabOrder = 4
      Text = '0'
      Visible = False
      OnExit = meLsPrimeExit
      OnKeyPress = EdtKeyPress
    end
  end
  object GroupBox2: TGroupBox
    Left = 8
    Top = 104
    Width = 201
    Height = 89
    Caption = ' Right  Hand Seat '
    TabOrder = 1
    object lblRsPrime: TLabel
      Left = 16
      Top = 40
      Width = 65
      Height = 13
      Caption = 'Weight in Lbs'
    end
    object lblRsLbs: TLabel
      Left = 120
      Top = 40
      Width = 65
      Height = 13
      Caption = 'Weight in Lbs'
      Visible = False
    end
    object rbRsKgs: TRadioButton
      Left = 16
      Top = 16
      Width = 49
      Height = 17
      Caption = 'Kilos'
      TabOrder = 0
      OnClick = rbRsStonesClick
    end
    object rbRsLbs: TRadioButton
      Tag = 1
      Left = 64
      Top = 16
      Width = 49
      Height = 17
      Caption = 'LBS'
      Checked = True
      TabOrder = 1
      TabStop = True
      OnClick = rbRsStonesClick
    end
    object rbRsStones: TRadioButton
      Tag = 2
      Left = 104
      Top = 16
      Width = 89
      Height = 17
      Caption = 'Stones && Lbs'
      TabOrder = 2
      OnClick = rbRsStonesClick
    end
    object efRsPrime: TEdit
      Left = 16
      Top = 56
      Width = 73
      Height = 21
      MaxLength = 3
      TabOrder = 3
      Text = '0'
      OnExit = meLsPrimeExit
      OnKeyPress = EdtKeyPress
    end
    object efRsLbs: TEdit
      Left = 120
      Top = 56
      Width = 33
      Height = 21
      MaxLength = 2
      TabOrder = 4
      Text = '0'
      Visible = False
      OnExit = meLsPrimeExit
      OnKeyPress = EdtKeyPress
    end
  end
  object efFormula: TEdit
    Left = 8
    Top = 216
    Width = 201
    Height = 21
    ReadOnly = True
    TabOrder = 2
    Text = 'efFormula'
  end
  object btnOk: TButton
    Left = 56
    Top = 248
    Width = 75
    Height = 25
    Caption = 'OK'
    Default = True
    Enabled = False
    ModalResult = 1
    TabOrder = 3
  end
  object Button2: TButton
    Left = 136
    Top = 248
    Width = 75
    Height = 25
    Cancel = True
    Caption = 'Cancel'
    ModalResult = 2
    TabOrder = 4
  end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -