Переработаны методы.
This commit is contained in:
@@ -30,8 +30,20 @@ namespace Lattice.Core.DragDrop.Models;
|
||||
public class DropInfo
|
||||
{
|
||||
private DragDropEffects _effects = DragDropEffects.None;
|
||||
|
||||
/// <summary>
|
||||
/// Получает или задает позицию сброса относительно цели.
|
||||
/// </summary>
|
||||
public DropPosition DropPosition { get; set; } = DropPosition.Inside;
|
||||
|
||||
/// <summary>
|
||||
/// Получает или задает значение, указывающее, нужно ли показывать визуальную обратную связь.
|
||||
/// </summary>
|
||||
public bool ShowVisualFeedback { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Получает или задает данные для визуальной обратной связи.
|
||||
/// </summary>
|
||||
public object? VisualFeedbackData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user