Files
ShrlAlgoToolkit/AntDesignWPF/Controls/AntWindow/ClosingWindowEventHandlerArgs.cs

10 lines
173 B
C#
Raw Normal View History

2025-07-31 20:12:24 +08:00
namespace AntDesignWPF.Controls
2025-07-11 09:20:23 +08:00
{
using System;
public class ClosingWindowEventHandlerArgs : EventArgs
{
public bool Cancelled { get; set; }
}
}