unitfrmyearandcountry.dfm

来自「关联规则算法的实现和表示Delphi源码」· DFM 代码 · 共 127 行

DFM
127
字号
object FrmYearAndCountry: TFrmYearAndCountry
  Left = 214
  Top = 80
  BorderStyle = bsDialog
  Caption = 'YearAndCountry'
  ClientHeight = 672
  ClientWidth = 891
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 13
  object Panel1: TPanel
    Left = -3
    Top = 0
    Width = 889
    Height = 665
    Caption = 'Panel1'
    TabOrder = 0
    object Label2: TLabel
      Left = 800
      Top = 160
      Width = 58
      Height = 13
      Caption = 'Country List:'
    end
    object GroupBox1: TGroupBox
      Left = 784
      Top = 16
      Width = 97
      Height = 49
      TabOrder = 0
      object Label1: TLabel
        Left = 8
        Top = 16
        Width = 28
        Height = 13
        Caption = 'Year :'
      end
      object ComboBox1: TComboBox
        Left = 40
        Top = 16
        Width = 57
        Height = 21
        ItemHeight = 13
        TabOrder = 0
        Text = '1996'
        OnChange = ComboBox1Change
        Items.Strings = (
          '1996'
          '1997'
          '1998')
      end
    end
    object Chart1: TChart
      Left = 16
      Top = 24
      Width = 761
      Height = 617
      BackWall.Brush.Color = clWhite
      BackWall.Brush.Style = bsClear
      Title.Text.Strings = (
        'TChart')
      Title.Visible = False
      Legend.Visible = False
      View3D = False
      View3DWalls = False
      BevelOuter = bvLowered
      TabOrder = 1
      OnDblClick = Chart1DblClick
      object Series1: TBarSeries
        Marks.ArrowLength = 20
        Marks.Visible = False
        SeriesColor = clRed
        BarStyle = bsRectGradient
        XValues.DateTime = False
        XValues.Name = 'X'
        XValues.Multiplier = 1.000000000000000000
        XValues.Order = loAscending
        YValues.DateTime = False
        YValues.Name = 'Bar'
        YValues.Multiplier = 1.000000000000000000
        YValues.Order = loNone
      end
    end
    object RadioGroup1: TRadioGroup
      Left = 789
      Top = 77
      Width = 89
      Height = 73
      Caption = #19979#38075
      TabOrder = 2
    end
    object RadioButton1: TRadioButton
      Left = 800
      Top = 96
      Width = 57
      Height = 17
      Caption = #26376#20221
      TabOrder = 3
    end
    object RadioButton2: TRadioButton
      Left = 800
      Top = 120
      Width = 65
      Height = 17
      Caption = #23458#25143
      TabOrder = 4
    end
    object ListBox1: TListBox
      Left = 792
      Top = 185
      Width = 89
      Height = 455
      ItemHeight = 13
      TabOrder = 5
      OnDblClick = ListBox1DblClick
      OnMouseDown = ListBox1MouseDown
    end
  end
end

⌨️ 快捷键说明

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