コード例 #1
0
 public void Go(Journal j)
 {
     this.j = j;
     this.CommentCountWindow.Show();
     using (new Components.Busy(CommentCountWindow))
     {
         c            = new EF.ljArchive.Plugins.Core.CommentCount(j);
         zg.GraphPane = c.GetGraph((int)sbShowTop.Value, zg.Height - 1,
                                   zg.Width - 1);
     }
 }
コード例 #2
0
 public void Go(Journal j)
 {
     this.j         = j;
     Cursor.Current = Cursors.WaitCursor;
     c = new EF.ljArchive.Plugins.Core.CommentCount(j);
     graphControl.GraphPane = c.GetGraph((int)numShowTop.Value, graphControl.Height - 1,
                                         graphControl.Width - 1);
     toolTip        = new ToolTip(this.components);
     Cursor.Current = Cursors.Default;
     ShowDialog();
 }