c# - How to detect double-keyboard with ReactiveUI -


how detect double-key board (like double key-enter) reactiveui

how this:

doubleenter = somewindow.events().keyup     .where(x => x.eventargs.key == key.enter)     .buffer(timespan.frommilliseconds(650), rxapp.mainthreadscheduler)     .where(x => x.length > 1); 

Comments

Popular posts from this blog

javascript - ScrollTo Effect (href to div) -

javascript - ng-class not responding to change in model in Angular? -

javascript - document.registerElement extending HTMLInputElement prototype while using custom tag name to avoid implicit browser style -