mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-07-19 22:04:38 +02:00
10 lines
233 B
C#
10 lines
233 B
C#
using System.Windows;
|
|
|
|
namespace BackupEssentials.Pages{
|
|
interface IPageDragDrop{
|
|
object DragEnter(DragEventArgs e);
|
|
void DragExit(DragEventArgs e);
|
|
void DragDrop(DragEventArgs e, object data);
|
|
}
|
|
}
|