mainunit.dfm

来自「Delphi7编程80例(完全版)」· DFM 代码 · 共 68 行

DFM
68
字号
object MainForm: TMainForm
  Left = 192
  Top = 107
  BorderStyle = bsDialog
  Caption = 'MainForm'
  ClientHeight = 438
  ClientWidth = 346
  Color = clBtnFace
  Font.Charset = ANSI_CHARSET
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = '宋体'
  Font.Style = []
  FormStyle = fsStayOnTop
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 16
  object RadioGroup1: TRadioGroup
    Left = 32
    Top = 16
    Width = 281
    Height = 81
    Caption = '隐藏/显示任务栏'
    Items.Strings = (
      '隐藏任务栏'
      '显示任务栏')
    TabOrder = 0
    OnClick = RadioGroup1Click
  end
  object RadioGroup2: TRadioGroup
    Left = 32
    Top = 112
    Width = 281
    Height = 81
    Caption = '隐藏/显示桌面图标'
    Items.Strings = (
      '隐藏桌面图标'
      '显示桌面图标')
    TabOrder = 1
    OnClick = RadioGroup2Click
  end
  object RadioGroup3: TRadioGroup
    Left = 32
    Top = 208
    Width = 281
    Height = 81
    Caption = '隐藏/显示开始菜单'
    Items.Strings = (
      '隐藏开始菜单'
      '显示开始菜单')
    TabOrder = 2
    OnClick = RadioGroup3Click
  end
  object RadioGroup4: TRadioGroup
    Left = 32
    Top = 304
    Width = 281
    Height = 81
    Caption = '隐藏/显示任务栏图标'
    Items.Strings = (
      '隐藏任务栏图标'
      '显示任务栏图标')
    TabOrder = 3
    OnClick = RadioGroup4Click
  end
end

⌨️ 快捷键说明

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