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

📄 addindexfrm.dfm

📁 delphi本地数据库引擎
💻 DFM
字号:
inherited AddIndexForm: TAddIndexForm
  Left = 192
  Top = 133
  BorderStyle = bsDialog
  Caption = '添加索引'
  ClientHeight = 256
  ClientWidth = 350
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 12
  object GroupBox1: TGroupBox
    Left = 8
    Top = 4
    Width = 333
    Height = 208
    TabOrder = 0
    object IndexNameLabel: TLabel
      Left = 12
      Top = 18
      Width = 36
      Height = 12
      Caption = '索引名'
    end
    object IndexFieldsLabel: TLabel
      Left = 12
      Top = 62
      Width = 174
      Height = 12
      Caption = '索引字段(多个字段用“,”分隔)'
    end
    object FieldsLabel: TLabel
      Left = 12
      Top = 107
      Width = 48
      Height = 12
      Caption = '可选字段'
    end
    object IndexNameEdit: TEdit
      Left = 12
      Top = 35
      Width = 178
      Height = 20
      TabOrder = 0
    end
    object IndexFieldEdit: TEdit
      Left = 12
      Top = 79
      Width = 178
      Height = 20
      TabOrder = 1
    end
    object FieldsListBox: TListBox
      Left = 12
      Top = 124
      Width = 178
      Height = 70
      ItemHeight = 12
      TabOrder = 2
      OnMouseDown = FieldsListBoxMouseDown
    end
    object SortRadioGroup: TRadioGroup
      Left = 205
      Top = 132
      Width = 113
      Height = 62
      Caption = '排序方式'
      ItemIndex = 0
      Items.Strings = (
        '从小到大'
        '从大到小')
      TabOrder = 4
    end
    object GroupBox2: TGroupBox
      Left = 205
      Top = 29
      Width = 113
      Height = 92
      TabOrder = 3
      object PrimaryCheckBox: TCheckBox
        Left = 13
        Top = 17
        Width = 87
        Height = 17
        Caption = '主索引'
        TabOrder = 0
      end
      object UniqueCheckBox: TCheckBox
        Left = 13
        Top = 41
        Width = 87
        Height = 17
        Caption = '唯一性'
        TabOrder = 1
      end
      object CaseCheckBox: TCheckBox
        Left = 13
        Top = 64
        Width = 87
        Height = 17
        Caption = '区分大小写'
        Checked = True
        State = cbChecked
        TabOrder = 2
      end
    end
  end
  object OkButton: TButton
    Left = 175
    Top = 222
    Width = 75
    Height = 25
    Caption = '添加'
    Default = True
    TabOrder = 1
    OnClick = OkButtonClick
  end
  object CloseButton: TButton
    Left = 266
    Top = 222
    Width = 75
    Height = 25
    Cancel = True
    Caption = '关闭'
    TabOrder = 2
    OnClick = CloseButtonClick
  end
end

⌨️ 快捷键说明

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