public MainWindow() { InitializeComponent(); tappy = new TappyReader(CommunicationProtocol.Usb); table = new ObservableCollection <Row>(); records.ItemsSource = table; this.Closed += MainWindow_Closed; }
public TappyUSBKeyboardWedge(List <RecordType> recordTypes, List <ControlCharacter> controlCharacters, int scanStaggerMs, bool formModeActive) { tappy = new TappyReader(CommunicationProtocol.Usb); InvokeKeyboardFeature = KeyboardWedge; this.recordTypes = recordTypes; this.controlCharacters = controlCharacters; this.scanStaggerMs = scanStaggerMs; this.formModeActive = formModeActive; }
public TappyUSBKeyboardWedge() { tappy = new TappyReader(CommunicationProtocol.Usb); InvokeKeyboardFeature = KeyboardWedge; recordTypes.Add(RecordType.TEXT); }