File: System\Windows\Forms\Design\Behavior\BehaviorDragDropEventArgs.cs
Web Access
Project: src\src\System.Windows.Forms.Design\src\System.Windows.Forms.Design.csproj (System.Windows.Forms.Design)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections;
 
namespace System.Windows.Forms.Design.Behavior;
 
/// <summary>
///  This class represents the arguments describing a BehaviorDragDrop event fired by the BehaviorService.
/// </summary>
public class BehaviorDragDropEventArgs : EventArgs
{
    public BehaviorDragDropEventArgs(ICollection dragComponents) => DragComponents = dragComponents;
 
    /// <summary>
    ///  Returns the list of IComponents currently being dragged.
    /// </summary>
    public ICollection DragComponents { get; }
}