Example #1
0
        public ControlContainer() {
            gChildren = new ControlCollection();
            gChildren.SetParent(this);
            gChildren.SetManager(base.Manager);

            gnOffsetX = 0;
            gnOffsetY = 0;
        }
Example #2
0
        public ControlManager() {
            this.Apply += ControlManager_Apply;

            gControls = new ControlCollection();
            gControls.SetManager(this);

            gnEditID = -1;
        }