コード例 #1
0
 public ImageStripItemMovingEventArgs(PaintDotNet.Controls.ImageStrip.Item item, int oldIndex, int newIndex, bool cancel) : base(cancel)
 {
     this.Item     = item;
     this.OldIndex = oldIndex;
     this.NewIndex = newIndex;
 }
コード例 #2
0
 public ImageStripItemMovedEventArgs(PaintDotNet.Controls.ImageStrip.Item item, int oldIndex, int newIndex)
 {
     this.Item     = item;
     this.OldIndex = oldIndex;
     this.NewIndex = newIndex;
 }