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

📄 unit1.dfm

📁 delphi课程设计的内容,包括源代码,文本的设计,菜单的设计等.
💻 DFM
字号:
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 544
  Height = 375
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clRed
  Font.Height = -19
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 24
  object GroupBox1: TGroupBox
    Left = 176
    Top = 152
    Width = 145
    Height = 145
    Caption = '字型'
    TabOrder = 0
    object CheckBox1: TCheckBox
      Left = 16
      Top = 24
      Width = 97
      Height = 25
      Caption = '粗体'
      TabOrder = 0
      OnClick = CheckBox1Click
    end
    object CheckBox2: TCheckBox
      Left = 16
      Top = 56
      Width = 81
      Height = 33
      Caption = '斜体'
      TabOrder = 1
      OnClick = CheckBox2Click
    end
    object CheckBox3: TCheckBox
      Left = 16
      Top = 104
      Width = 73
      Height = 33
      Caption = '下划线'
      TabOrder = 2
      OnClick = CheckBox3Click
    end
  end
  object Edit1: TEdit
    Left = 24
    Top = 40
    Width = 233
    Height = 21
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clRed
    Font.Height = -11
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ParentFont = False
    TabOrder = 1
  end
  object ComboBox1: TComboBox
    Left = 320
    Top = 40
    Width = 161
    Height = 32
    ItemHeight = 24
    TabOrder = 2
    Text = '8'
    OnChange = ComboBox1Change
    Items.Strings = (
      '8'
      '12'
      '14'
      '16'
      '18'
      '20'
      '22'
      '24'
      '26'
      '28'
      '30'
      '32'
      '34'
      '36'
      '38'
      '40')
  end
  object RadioGroup1: TRadioGroup
    Left = 16
    Top = 152
    Width = 137
    Height = 145
    Caption = '颜色'
    Items.Strings = (
      '红'
      '绿'
      '蓝')
    TabOrder = 3
    OnClick = RadioGroup1Click
  end
  object ListBox1: TListBox
    Left = 352
    Top = 160
    Width = 169
    Height = 137
    ItemHeight = 24
    TabOrder = 4
    OnClick = ListBox1Click
  end
end

⌨️ 快捷键说明

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