hid controller(human interface devices)一套完整的hid相关组件

源代码在线查看: ioirmain.dfm

软件大小: 528 K
上传用户: fengkuangyidao
关键词: controller hid interface devices
下载地址: 免注册下载 普通下载 VIP

相关代码

				object MainForm: TMainForm
				  Left = 192
				  Top = 116
				  BorderIcons = [biSystemMenu, biMinimize]
				  BorderStyle = bsSingle
				  Caption = 'IO-Warrior Infrared Receiver'
				  ClientHeight = 418
				  ClientWidth = 343
				  Color = clBtnFace
				  Font.Charset = DEFAULT_CHARSET
				  Font.Color = clWindowText
				  Font.Height = -11
				  Font.Name = 'MS Sans Serif'
				  Font.Style = []
				  OldCreateOrder = False
				  ShowHint = True
				  OnActivate = FormActivate
				  PixelsPerInch = 96
				  TextHeight = 13
				  object IOWarriorDetected: TLabel
				    Left = 8
				    Top = 16
				    Width = 329
				    Height = 13
				    Alignment = taCenter
				    AutoSize = False
				  end
				  object Description: TLabel
				    Left = 8
				    Top = 40
				    Width = 208
				    Height = 26
				    Caption = 
				      'Press keys on your IR remote to add entries.'#13#10'Double click entry' +
				      ' to edit.'
				    Enabled = False
				  end
				  object CodeList: TListView
				    Left = 8
				    Top = 72
				    Width = 330
				    Height = 337
				    Columns = <
				      item
				        Caption = 'Address'
				        Width = 80
				      end
				      item
				        Caption = 'Value'
				      end
				      item
				        Caption = 'Name'
				        Width = 100
				      end
				      item
				        Caption = 'Keys'
				        Width = 80
				      end>
				    ColumnClick = False
				    GridLines = True
				    ReadOnly = True
				    RowSelect = True
				    TabOrder = 0
				    ViewStyle = vsReport
				    OnDblClick = CodeListDblClick
				  end
				  object HidCtl: TJvHidDeviceController
				    OnDeviceChange = HidCtlDeviceChange
				    OnDeviceData = HidCtlDeviceData
				    Left = 256
				    Top = 16
				  end
				end
							

相关资源