Inheritance: System.EventArgs
コード例 #1
0
ファイル: GraphPage.cs プロジェクト: MarkPaxton/SensorShare3
 public void SetGraphParameters(GraphChagedEventArgs args)
 {
     SusupendPaint();
      graphBox.XAxisMax = args.EndTime;
      graphBox.XWidth = args.Width;
      if (args.FollowingTime)
      {
     graphBox.StartFollowingTime();
      }
      else
      {
     graphBox.StopFollowingTime();
      }
      ResumePaint();
 }