14 lines
451 B
C#
14 lines
451 B
C#
|
|
namespace AntdWpf.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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|