mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 00:16:36 +08:00
31 lines
710 B
C#
31 lines
710 B
C#
namespace Dragablz
|
|
{
|
|
public class MoveItemRequest
|
|
{
|
|
private readonly object _item;
|
|
private readonly object _context;
|
|
private readonly AddLocationHint _addLocationHint;
|
|
|
|
public MoveItemRequest(object item, object context, AddLocationHint addLocationHint)
|
|
{
|
|
_item = item;
|
|
_context = context;
|
|
_addLocationHint = addLocationHint;
|
|
}
|
|
|
|
public object Item
|
|
{
|
|
get { return _item; }
|
|
}
|
|
|
|
public object Context
|
|
{
|
|
get { return _context; }
|
|
}
|
|
|
|
public AddLocationHint AddLocationHint
|
|
{
|
|
get { return _addLocationHint; }
|
|
}
|
|
}
|
|
} |