14 lines
456 B
C#
14 lines
456 B
C#
namespace AntDesignWPF.Controls
|
|
{
|
|
using System.Windows.Controls.Primitives;
|
|
|
|
public class ThumbContentControlDragCompletedEventArgs : DragCompletedEventArgs
|
|
{
|
|
public ThumbContentControlDragCompletedEventArgs(double horizontalOffset, double verticalOffset, bool canceled)
|
|
: base(horizontalOffset, verticalOffset, canceled)
|
|
{
|
|
this.RoutedEvent = ThumbContentControl.DragCompletedEvent;
|
|
}
|
|
}
|
|
}
|