SvrMain.dfm
上传用户:zhanghw123
上传日期:2021-11-15
资源大小:312k
文件大小:1k
源码类别:

P2P编程

开发平台:

Delphi

  1. object FrmMain: TFrmMain
  2.   Left = 258
  3.   Top = 199
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'P2pServer'
  7.   ClientHeight = 270
  8.   ClientWidth = 450
  9.   Color = clBtnFace
  10.   Font.Charset = GB2312_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -12
  13.   Font.Name = #23435#20307
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   OnClose = FormClose
  18.   OnCreate = FormCreate
  19.   PixelsPerInch = 96
  20.   TextHeight = 12
  21.   object ToolBar: TToolBar
  22.     Left = 0
  23.     Top = 0
  24.     Width = 450
  25.     Height = 25
  26.     ButtonHeight = 20
  27.     ButtonWidth = 31
  28.     Flat = True
  29.     ShowCaptions = True
  30.     TabOrder = 0
  31.     object CmdStart: TToolButton
  32.       Left = 0
  33.       Top = 0
  34.       Caption = #21551#21160
  35.       ImageIndex = 0
  36.       OnClick = CmdStartClick
  37.     end
  38.     object CmdStop: TToolButton
  39.       Left = 31
  40.       Top = 0
  41.       Caption = #20572#27490
  42.       ImageIndex = 1
  43.       OnClick = CmdStopClick
  44.     end
  45.     object CmdQuit: TToolButton
  46.       Left = 62
  47.       Top = 0
  48.       Caption = #36864#20986
  49.       ImageIndex = 2
  50.       OnClick = CmdQuitClick
  51.     end
  52.   end
  53.   object TxtLog: TMemo
  54.     Left = 0
  55.     Top = 25
  56.     Width = 450
  57.     Height = 245
  58.     Align = alClient
  59.     ReadOnly = True
  60.     ScrollBars = ssVertical
  61.     TabOrder = 1
  62.   end
  63. end