Switch-Toolbox/Switch_Toolbox_Library/Forms/Custom/DropdownPanel/ExpandCollapseEventArgs.cs

18 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library.Forms
{
public class ExpandCollapseEventArgs : EventArgs
{
public bool IsExpanded { get; private set; }
public ExpandCollapseEventArgs(bool isExpanded)
{
IsExpanded = isExpanded;
}
}
}