auto_do.dfm

来自「这是一个用来控制windows状态栏右下角的程序开发例子.」· DFM 代码 · 共 59 行

DFM
59
字号
object main: Tmain
  Left = 224
  Top = 216
  Width = 348
  Height = 286
  BorderIcons = [biSystemMenu, biMinimize]
  Caption = '公积金自动送数系统'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Menu = MainMenu1
  OldCreateOrder = False
  WindowState = wsMinimized
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object RxClock1: TRxClock
    Left = 0
    Top = 0
    Width = 340
    Height = 232
    AlarmEnabled = True
    ShowMode = scAnalog
    Align = alClient
    BorderStyle = bsSingle
  end
  object Timer1: TTimer
    OnTimer = Timer1Timer
    Left = 24
    Top = 8
  end
  object MainMenu1: TMainMenu
    Left = 58
    Top = 10
    object N1: TMenuItem
      Caption = '任务管理'
      object N3: TMenuItem
        Caption = '新建任务'
      end
      object N4: TMenuItem
        Caption = '删除任务'
      end
      object N5: TMenuItem
        Caption = '启动任务'
      end
      object N6: TMenuItem
        Caption = '停止任务'
      end
      object N2: TMenuItem
        Caption = '退    出'
        OnClick = N2Click
      end
    end
  end
end

⌨️ 快捷键说明

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