loginfo.dfm

来自「这是一个正式的项目工程」· DFM 代码 · 共 92 行

DFM
92
字号
object frmLogInfo: TfrmLogInfo
  Left = 138
  Top = 127
  Width = 544
  Height = 375
  Caption = '察看日志'
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clHighlight
  Font.Height = -14
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 14
  object Panel1: TPanel
    Left = 0
    Top = 0
    Width = 536
    Height = 29
    Align = alTop
    TabOrder = 0
    object DBNavigator1: TDBNavigator
      Left = 1
      Top = 1
      Width = 208
      Height = 27
      DataSource = dmMainDB.dsViewLog
      VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast]
      Align = alLeft
      Hints.Strings = (
        'First record'
        'Prior record'
        'Next record'
        'Last record'
        '')
      TabOrder = 0
    end
  end
  object Panel2: TPanel
    Left = 0
    Top = 29
    Width = 536
    Height = 319
    Align = alClient
    TabOrder = 1
    object DBGridLog: TDBGrid
      Left = 1
      Top = 1
      Width = 534
      Height = 317
      Align = alClient
      DataSource = dmMainDB.dsViewLog
      Options = [dgTitles, dgIndicator, dgColumnResize, dgRowLines, dgTabs, dgConfirmDelete, dgCancelOnExit]
      TabOrder = 0
      TitleFont.Charset = GB2312_CHARSET
      TitleFont.Color = clHighlight
      TitleFont.Height = -14
      TitleFont.Name = '宋体'
      TitleFont.Style = []
      Columns = <
        item
          Expanded = False
          FieldName = 'UserName'
          Visible = True
        end
        item
          Expanded = False
          FieldName = 'Operation'
          Visible = True
        end
        item
          Expanded = False
          FieldName = 'DDate'
          Visible = True
        end
        item
          Expanded = False
          FieldName = 'DTime'
          Visible = True
        end
        item
          Expanded = False
          FieldName = 'Remark'
          Visible = True
        end>
    end
  end
end

⌨️ 快捷键说明

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