using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
namespace Tango.DragAndDrop
{
///
/// Represents a dragging surface to be used by the .
///
///
///
public class DraggingSurface : Canvas
{
///
/// Initializes a new instance of the class.
///
public DraggingSurface()
{
IsHitTestVisible = false;
}
}
}