CK.WindowManager.TopMostService.TopMostService C# (CSharp) Method

TopMostService() public method

public TopMostService ( ) : System
return System
        public TopMostService()
        {
            _timer = new System.Timers.Timer( 50 );
            _timer.Elapsed += _timer_Elapsed;
            _windowToString = new Dictionary<Window, string>();
            _stringToWindows = new Dictionary<string, List<Window>>();
            _indexList = new List<string>();
        }