MainFrm.dfm
上传用户:nvosite88
上传日期:2020-10-14
资源大小:3k
文件大小:2k
源码类别:

输入法编程

开发平台:

Delphi

  1. object MainForm: TMainForm
  2.   Left = 192
  3.   Top = 129
  4.   BorderStyle = bsDialog
  5.   Caption = '用拼音首字符序列来实现检索功能'
  6.   ClientHeight = 289
  7.   ClientWidth = 452
  8.   Color = clBtnFace
  9.   Font.Charset = GB2312_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -12
  12.   Font.Name = '宋体'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poDesktopCenter
  16.   PixelsPerInch = 96
  17.   TextHeight = 12
  18.   object Label1: TLabel
  19.     Left = 50
  20.     Top = 85
  21.     Width = 36
  22.     Height = 12
  23.     Caption = '中文:'
  24.   end
  25.   object Label2: TLabel
  26.     Left = 275
  27.     Top = 85
  28.     Width = 30
  29.     Height = 12
  30.     Caption = '拼音:'
  31.   end
  32.   object Label3: TLabel
  33.     Left = 65
  34.     Top = 25
  35.     Width = 276
  36.     Height = 24
  37.     Caption = 
  38.       '请在左边的‘中文’中填入中文,按‘转化’按钮,'#13#10'在右边的拼音中即' +
  39.       '可显示填入的中文的拼音'
  40.   end
  41.   object Label4: TLabel
  42.     Left = 55
  43.     Top = 251
  44.     Width = 264
  45.     Height = 12
  46.     Caption = '许国华 程序如有问题请EMail: nick_xu@sina.com'
  47.     Font.Charset = GB2312_CHARSET
  48.     Font.Color = clBlue
  49.     Font.Height = -12
  50.     Font.Name = '宋体'
  51.     Font.Style = []
  52.     ParentFont = False
  53.   end
  54.   object Label5: TLabel
  55.     Left = 55
  56.     Top = 271
  57.     Width = 186
  58.     Height = 12
  59.     Caption = 'DELPHI大学(xuguohua.yeah.net)'
  60.     Font.Charset = GB2312_CHARSET
  61.     Font.Color = clBlue
  62.     Font.Height = -12
  63.     Font.Name = '宋体'
  64.     Font.Style = []
  65.     ParentFont = False
  66.   end
  67.   object Label6: TLabel
  68.     Left = 55
  69.     Top = 226
  70.     Width = 120
  71.     Height = 12
  72.     Caption = '本程序不能区分多音字'
  73.     Font.Charset = GB2312_CHARSET
  74.     Font.Color = clBlue
  75.     Font.Height = -12
  76.     Font.Name = '宋体'
  77.     Font.Style = []
  78.     ParentFont = False
  79.   end
  80.   object ChineseEdt: TEdit
  81.     Left = 50
  82.     Top = 105
  83.     Width = 166
  84.     Height = 20
  85.     TabOrder = 0
  86.   end
  87.   object PYEdt: TEdit
  88.     Left = 275
  89.     Top = 105
  90.     Width = 151
  91.     Height = 20
  92.     TabOrder = 1
  93.   end
  94.   object btnConvert: TButton
  95.     Left = 170
  96.     Top = 190
  97.     Width = 75
  98.     Height = 25
  99.     Caption = '转化'
  100.     TabOrder = 2
  101.     OnClick = btnConvertClick
  102.   end
  103. end