udp.dfm

来自「直接用Socket API实现UDP」· DFM 代码 · 共 65 行

DFM
65
字号
object frmmain: Tfrmmain
  Left = 243
  Top = 247
  Width = 392
  Height = 246
  Caption = 'frmmain'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnClose = FormClose
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 8
    Top = 8
    Width = 60
    Height = 13
    Caption = '目的地址:'
  end
  object Label2: TLabel
    Left = 16
    Top = 144
    Width = 60
    Height = 13
    Caption = '发送内容:'
  end
  object Button1: TButton
    Left = 16
    Top = 176
    Width = 75
    Height = 25
    Caption = 'Send'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Edit1: TEdit
    Left = 88
    Top = 8
    Width = 121
    Height = 21
    TabOrder = 1
    Text = '192.168.0.255'
  end
  object Memo1: TMemo
    Left = 8
    Top = 40
    Width = 361
    Height = 89
    TabOrder = 2
  end
  object Edit2: TEdit
    Left = 96
    Top = 144
    Width = 273
    Height = 21
    TabOrder = 3
    Text = 'Edit2'
  end
end

⌨️ 快捷键说明

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