Inheritance: LitDev.Engines.InputReport
示例#1
0
文件: HID.cs 项目: levi1994/LitDev
 protected override void HandleDataReceived(InputReport oInRep)
 {
     if (OnDeviceChanged != null)
     {
         HIDInputReport oHIDIn = (HIDInputReport)oInRep;
         OnDeviceChanged(this, new HIDChangedEventArgs(oHIDIn));
     }
 }
示例#2
0
文件: HID.cs 项目: litdev1/LitDev
 public HIDChangedEventArgs(HIDInputReport oHIDIn)
 {
     this.oHIDIn = oHIDIn;
 }
示例#3
0
文件: HID.cs 项目: levi1994/LitDev
 public HIDChangedEventArgs(HIDInputReport oHIDIn)
 {
     this.oHIDIn = oHIDIn;
 }