public ScrollController(IPageScroller _pageScroller, ScrollingDirection _direction) { pageScroller = _pageScroller; direction = _direction; dpiRatio = SystemParameters.PrimaryScreenHeight / 720.0; }
public ScrollController(IPageScroller _pageScroller, ScrollingDirection _direction) { pageScroller = _pageScroller; direction = _direction; dpiRatio = SystemParameters.PrimaryScreenHeight / 720.0; workingThread = new Thread(new ThreadStart(ScrollingThread)); workingThread.Start(); }