#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
600 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
namespace SharpDevelop.XamlDesigner.Controls
{
public class AdvancedDragEventArgs
{
internal AdvancedDragEventArgs(AdvancedThumb thumb)
{
this.thumb = thumb;
}
AdvancedThumb thumb;
public Point StartPoint
{
get { return thumb.StartPoint; }
}
public Vector Delta
{
get { return thumb.Delta; }
}
public bool IsCancel
{
get { return thumb.IsCancel; }
}
}
public delegate void AdvancedDragEventHandler(object sender, AdvancedDragEventArgs e);
}