Example #1
0
 /// <summary>
 /// 1ページ後へ移動
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ToolStripButton4_Click(object sender, EventArgs e)
 {
     if (MyMeigara != null)
     {
         System.Windows.Forms.Cursor _Cursor = this.Cursor;
         this.Cursor = Cursors.WaitCursor;
         MyMeigara.ShiftKabukaTable(CandleSizeList[(int)MyConfig.CandleSize].Days);
         DrawTable(MyMeigara, chart1);
         this.Cursor = _Cursor;
     }
 }
Example #2
0
 /// <summary>
 /// 1日後に移動
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ToolStripButton3_Click(object sender, EventArgs e)
 {
     if (MyMeigara != null)
     {
         System.Windows.Forms.Cursor _Cursor = this.Cursor;
         this.Cursor = Cursors.WaitCursor;
         MyMeigara.ShiftKabukaTable(1);
         DrawTable(MyMeigara, chart1);
         this.Cursor = _Cursor;
     }
 }