Example #1
0
        public void Execute()
        {
            ScreenUtil screen = new ScreenUtil();
            for (int i = 0; i < 5; i++)
            {
                screen.drawSomething(
                    SystemInformation.WorkingArea.Size.Width - 100,
                    SystemInformation.WorkingArea.Size.Height - 100,
                    this.message);

                Thread.Sleep(500);
            }
        }