Files
1258/JinYuan.ControlLib/UserStateChangedEvent.cs
T

25 lines
475 B
C#
Raw Normal View History

2026-08-04 18:36:40 +08:00
using System;
namespace JinYuan.ControlLib
{
public delegate void UserStateChangedEventHandler(
object sender,
UserStateChangedEventArgs e);
public class UserStateChangedEventArgs : EventArgs
{
private bool _active;
public UserStateChangedEventArgs(bool active)
: base()
{
_active = active;
}
public bool Active
{
get { return _active; }
}
}
}