예제 #1
0
        private static void Main(string[] args)
        {
            Console.Title = "FlagConsole Demo Application";

            Console.WindowHeight = 50;
            Console.WindowWidth = 80;
            Console.BufferHeight = 50;
            Console.BufferWidth = 80;

            Console.CursorVisible = false;

            var screen = new DemoScreen { Size = new Size(79, 49) };
            screen.Activate();
        }
예제 #2
0
        private static void Main(string[] args)
        {
            Console.Title = "FlagConsole Demo Application";

            Console.WindowHeight = 50;
            Console.WindowWidth  = 80;
            Console.BufferHeight = 50;
            Console.BufferWidth  = 80;

            Console.CursorVisible = false;

            var screen = new DemoScreen {
                Size = new Size(79, 49)
            };

            screen.Activate();
        }