Beispiel #1
0
 /// <summary>
 /// Create a new DragUpdateInfo.
 /// </summary>
 /// <param name="screen">The information of the drag on screen</param>
 public DragUpdateInfo(DragTranslation translation) : this()
 {
     this.translation = translation;
 }
Beispiel #2
0
 /// <summary>
 /// Create a new DragEndInfo.
 /// </summary>
 /// <param name="screen">The information of the drag on screen</param>
 public DragEndInfo(DragTranslation translation) : this()
 {
     this.translation = translation;
 }
Beispiel #3
0
 /// <summary>
 /// Create a new DragBeginInfo.
 /// </summary>
 /// <param name="screen">The information of the drag on screen</param>
 public DragBeginInfo(DragTranslation translation) : this()
 {
     this.translation = translation;
 }