/// <summary>
 /// Initialize a new instance of the KryptonPageDragEventArgs class.
 /// </summary>
 /// <param name="screenPoint">Screen point of the mouse.</param>
 /// <param name="pages">Collection of event associated pages.</param>
 public PageDragEventArgs(Point screenPoint,
                          KryptonPageCollection pages)
 {
     ScreenPoint = screenPoint;
     Pages       = pages;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initialize a new instance of the PageDragEndData class.
 /// </summary>
 /// <param name="source">Source object for the drag data..</param>
 /// <param name="pages">Collection of pages.</param>
 public PageDragEndData(object source,
                        KryptonPageCollection pages)
     : this(source, null, pages)
 {
 }