Example #1
0
        protected CrtControl(CrtControl parent, int column, int row, int width, int height)
        {
            _Parent = parent;
            _Left   = column;
            _Top    = row;
            _Width  = width;
            _Height = height;

            SaveBackground();

            if (_Parent != null)
            {
                parent.AddControl(this);
            }
        }