inout_dm.dfm
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:2k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. object inout: Tinout
  2.   OldCreateOrder = False
  3.   PageProducer = AdapterPageProducer
  4.   Left = 254
  5.   Top = 107
  6.   Height = 168
  7.   Width = 227
  8.   object AdapterPageProducer: TAdapterPageProducer
  9.     HTMLDoc.Strings = (
  10.       '<html>'
  11.       '<head>'
  12.       '</head>'
  13.       '<body>'
  14.       '<#STYLES><#WARNINGS><#SERVERSCRIPT>'
  15.       '</body>'
  16.       '</html>')
  17.     Left = 48
  18.     Top = 8
  19.     object AdapterForm1: TAdapterForm
  20.       object AdapterFieldGroup1: TAdapterFieldGroup
  21.         Adapter = Adapter1
  22.         object FldText: TAdapterDisplayField
  23.           FieldName = 'Text'
  24.         end
  25.         object FldAuto: TAdapterDisplayField
  26.           FieldName = 'Auto'
  27.         end
  28.       end
  29.       object AdapterCommandGroup1: TAdapterCommandGroup
  30.         DisplayComponent = AdapterFieldGroup1
  31.         object CmdPost: TAdapterActionButton
  32.           ActionName = 'Post'
  33.         end
  34.         object CmdAddPlus: TAdapterActionButton
  35.           ActionName = 'AddPlus'
  36.         end
  37.       end
  38.     end
  39.   end
  40.   object Adapter1: TAdapter
  41.     OnBeforeExecuteAction = Adapter1BeforeExecuteAction
  42.     Left = 48
  43.     Top = 72
  44.     object TAdapterActions
  45.       object AddPlus: TAdapterAction
  46.         OnExecute = AddPlusExecute
  47.       end
  48.       object Post: TAdapterAction
  49.         OnExecute = PostExecute
  50.       end
  51.     end
  52.     object TAdapterFields
  53.       object Text: TAdapterField
  54.         OnGetValue = TextGetValue
  55.       end
  56.       object Auto: TAdapterBooleanField
  57.         OnGetValue = AutoGetValue
  58.       end
  59.     end
  60.   end
  61. end