Files
ShrlAlgoToolkit/AntDesignWPF/Controls/AntWindow/ClosingWindowEventHandlerArgs.cs
2025-07-31 20:12:24 +08:00

10 lines
173 B
C#

namespace AntDesignWPF.Controls
{
using System;
public class ClosingWindowEventHandlerArgs : EventArgs
{
public bool Cancelled { get; set; }
}
}