Beispiel #1
0
        public static void Main()
        {
            var scroller = new InfiniScroller();
            var form     = new InfiniScrollForm(scroller);

            _ = new HotKeyListener(form);
            form.ShowDialog();
        }
Beispiel #2
0
 public HotKeyListener(InfiniScrollForm form)
 {
     _form = form;
     RegisterHotKey(form.Handle, InfiniScroll.ToggleHotKey, 0, (int)Keys.F6);
 }