mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-27 06:50:23 +00:00
18 lines
388 B
C#
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;
|
|
}
|
|
}
|
|
|
|
}
|