Example #1
0
        int minLidPix           = 6; // use an even number for this

        public OPviewer()
        {
            InitializeComponent();

            this.Resize   += new EventHandler(OPviewer_Resize);
            this.GotFocus += new EventHandler(OPviewer_gotFocus);
            this.Disposed += new System.EventHandler(OPviewer_Disposed);
            this.Move     += new EventHandler(OPviewer_Move);

            methodTypeUsed = LNquantitate.spectrumType.profile;
        }
Example #2
0
        public OPviewer(LNquantitate.spectrumType spectType,
                        LNquantitate.quantitationStrategy strategy,
                        double widthForHR,
                        string _workFolder)
        {
            InitializeComponent();

            this.Resize   += new EventHandler(OPviewer_Resize);
            this.GotFocus += new EventHandler(OPviewer_gotFocus);
            this.Disposed += new System.EventHandler(OPviewer_Disposed);
            this.Move     += new EventHandler(OPviewer_Move);

            workFolder = _workFolder;

            methodTypeUsed = spectType;
            quantStrategy  = strategy;
            width          = widthForHR;
        }