Ejemplo n.º 1
0
        public void makeCustomRenderAndTransparent()
        {
            mIsCustomRenderControl = true;
            xCanvas c = new xCanvas(false, true);

            c.setxBaseControl(this);

            setControl(c);
        }
Ejemplo n.º 2
0
        public void makeCustomRender(bool doubleBuffer)
        {
            mIsCustomRenderControl = true;
            xCanvas c = new xCanvas(doubleBuffer);

            c.setxBaseControl(this);

            setControl(c);

            mDoubleBuffer = doubleBuffer;
        }