示例#1
0
        public SWPEditorControl()
            : base()
        {
            DoubleBuffered = true;

            Documento _documento = new Documento();

            _clipboard = new SWPClipboard();
            _base      = new SWPGenericControl(GraficadorGDI.ObtenerGraficadorConsultas());
            this.SetStyle(ControlStyles.Selectable, true);
            Enabled = true;
            Visible = true;
            _base.PrintRequested   += new EventHandler(_base_PrintRequested);
            _base.RefreshRequested += new EventHandler(_base_RefreshRequested);
        }