unitfrmmain.dfm

来自「《Delphi实用程序100例》配套书源码盘」· DFM 代码 · 共 68 行

DFM
68
字号
object Form1: TForm1
  Left = 87
  Top = 116
  Width = 544
  Height = 375
  Caption = '控制WINDOWS的关闭'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCloseQuery = FormCloseQuery
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 144
    Top = 208
    Width = 75
    Height = 25
    Caption = '确定'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 264
    Top = 208
    Width = 75
    Height = 25
    Caption = '取消'
    TabOrder = 1
    OnClick = Button2Click
  end
  object rgExit: TRadioGroup
    Left = 48
    Top = 16
    Width = 233
    Height = 105
    Caption = '控制WINDOWS的关闭'
    TabOrder = 2
  end
  object RadioButton1: TRadioButton
    Left = 64
    Top = 40
    Width = 177
    Height = 17
    Caption = '注销当前用户并重新登录'
    TabOrder = 3
  end
  object RadioButton2: TRadioButton
    Left = 64
    Top = 64
    Width = 193
    Height = 17
    Caption = '关闭Windows并重新启动'
    TabOrder = 4
  end
  object RadioButton3: TRadioButton
    Left = 64
    Top = 88
    Width = 113
    Height = 17
    Caption = '关闭Windows'
    TabOrder = 5
  end
end

⌨️ 快捷键说明

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