Browse Source
Also the windows specific DragSource is only used when the application runs as STApull/1417/head
22 changed files with 43 additions and 42 deletions
@ -1,4 +1,4 @@ |
|||
namespace Avalonia.Controls.DragDrop |
|||
namespace Avalonia.Input.DragDrop |
|||
{ |
|||
public static class DataFormats |
|||
{ |
|||
@ -1,8 +1,8 @@ |
|||
using System.Threading.Tasks; |
|||
using Avalonia.Controls.Platform; |
|||
using Avalonia.Interactivity; |
|||
using Avalonia.Input.Platform; |
|||
|
|||
namespace Avalonia.Controls.DragDrop |
|||
namespace Avalonia.Input.DragDrop |
|||
{ |
|||
public static class DragDrop |
|||
{ |
|||
@ -1,13 +1,12 @@ |
|||
using Avalonia.Input; |
|||
using Avalonia.Interactivity; |
|||
using Avalonia.Interactivity; |
|||
using Avalonia.VisualTree; |
|||
using System.Linq; |
|||
using Avalonia.Controls.DragDrop.Raw; |
|||
using Avalonia.Input.DragDrop.Raw; |
|||
using Avalonia.Input.Raw; |
|||
|
|||
namespace Avalonia.Controls.DragDrop |
|||
namespace Avalonia.Input.DragDrop |
|||
{ |
|||
class DragDropDevice : IDragDropDevice |
|||
public class DragDropDevice : IDragDropDevice |
|||
{ |
|||
public static readonly DragDropDevice Instance = new DragDropDevice(); |
|||
|
|||
@ -1,6 +1,6 @@ |
|||
using System; |
|||
|
|||
namespace Avalonia.Controls.DragDrop |
|||
namespace Avalonia.Input.DragDrop |
|||
{ |
|||
[Flags] |
|||
public enum DragDropEffects |
|||
@ -1,6 +1,6 @@ |
|||
using Avalonia.Interactivity; |
|||
|
|||
namespace Avalonia.Controls.DragDrop |
|||
namespace Avalonia.Input.DragDrop |
|||
{ |
|||
public class DragEventArgs : RoutedEventArgs |
|||
{ |
|||
@ -1,6 +1,6 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Avalonia.Controls.DragDrop |
|||
namespace Avalonia.Input.DragDrop |
|||
{ |
|||
public interface IDataObject |
|||
{ |
|||
@ -1,6 +1,6 @@ |
|||
using Avalonia.Input; |
|||
|
|||
namespace Avalonia.Controls.DragDrop.Raw |
|||
namespace Avalonia.Input.DragDrop.Raw |
|||
{ |
|||
public interface IDragDropDevice : IInputDevice |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
namespace Avalonia.Controls.DragDrop.Raw |
|||
namespace Avalonia.Input.DragDrop.Raw |
|||
{ |
|||
public enum RawDragEventType |
|||
{ |
|||
Loading…
Reference in new issue