コード例 #1
0
 public BlazorDeviceSet(MInputWrapperComponent component)
     : base("Blazor",
            new BlazorKeyboard(component),
            new BlazorMouse(component),
            null,
            new BlazorTouchDevice(component))
 {
 }
コード例 #2
0
ファイル: BlazorDevice.cs プロジェクト: Mallos/Mallos.Input
 protected BlazorDevice(MInputWrapperComponent component)
 {
     this.component = component;
 }
コード例 #3
0
ファイル: BlazorKeyboard.cs プロジェクト: Mallos/Mallos.Input
 public BlazorKeyboard(MInputWrapperComponent component)
     : base(component)
 {
 }
コード例 #4
0
ファイル: BlazorMouse.cs プロジェクト: Mallos/Mallos.Input
 public BlazorMouse(MInputWrapperComponent component)
     : base(component)
 {
 }
コード例 #5
0
 public BlazorTouchDevice(MInputWrapperComponent component)
     : base(component)
 {
 }