Пример #1
0
        public Window(int width, int height)
            : base(width, height)
        {
            _border        = Shapes.Box.GetDefaultBox();
            _border.Width  = width;
            _border.Height = height;
            isVisible      = false;

            Renderer = new WindowRenderer();

            IsDirty = true;
            Redraw();
        }
Пример #2
0
        public static Box GetDefaultBox()
        {
            Box box = new Box(186, 205, 201, 187, 188, 200, 4, 4);

            return box;
        }
Пример #3
0
        public static Box GetDefaultBox()
        {
            Box box = new Box(186, 205, 201, 187, 188, 200, 4, 4);

            return(box);
        }