public frm_kDetailReview(SecurityInfo si, DateTime datetime)
        {
            InitializeComponent();
            this._si    = si;
            this.sidate = datetime;
            this.Text   = string.Format("{0}-{1} 分时图", si.Name, datetime.ToShortDateString());
            GUITools.DoubleBuffer(this.chart_tick, true);
            GUITools.DoubleBuffer(this.uc_stockdetail, true);
            this.chart_5m.Top  = 0;
            this.chart_5m.Left = 0;
            _riscPoints        = new RiscPoints();
            dataget            = false;
            this.chart_tick.Series.Clear();
            //清除缓存
            this.uc_stockdetail.Clear();
            Thread _thread_MonitorCanceledWeiTuoList = new Thread(new ThreadStart(LoadData));

            _thread_MonitorCanceledWeiTuoList.Start();
        }
 public frm_ReceiveLog()
 {
     InitializeComponent();
     lastWriteToFile = true;
     GUITools.DoubleBuffer(this.grid_list, true);
 }
Example #3
0
 public frm_MonitorList()
 {
     InitializeComponent();
     GUITools.DoubleBuffer(this.grid_stocklist, true);
 }