Files
ShrlAlgoToolkit/AntdWpf/Controls/ClosingWindowEventHandlerArgs.cs
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

10 lines
168 B
C#

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