Example #1
0
        public MainWnd()
        {
            InitializeComponent();

            FindAllVisibleWindows();
            if (newWindowList.Count <= 0)
            {
                StartNewExplorer();
                FindAllVisibleWindows();
            }

            AddControls();
            statThis = this;

            Task backgroudSearchTask = new Task(new Action(BackgroundExplorerSearch));

            backgroudSearchTask.Start();
        }
Example #2
0
        static void Main()
        {
            MainWnd bla = new MainWnd();

            Application.Run(bla);
        }
Example #3
0
 static void Main()
 {
     MainWnd bla = new MainWnd();
     Application.Run(bla);
 }
Example #4
0
        public MainWnd()
        {
            InitializeComponent();

            FindAllVisibleWindows();
            if (newWindowList.Count <= 0)
            {
                StartNewExplorer();
                FindAllVisibleWindows();
            }

            AddControls();
            statThis = this;

            Task backgroudSearchTask = new Task(new Action(BackgroundExplorerSearch));
            backgroudSearchTask.Start();
        }