Files
Shrlalgo.RvKits/AntdWpf/Controls/ClosingWindowEventHandlerArgs.cs

10 lines
168 B
C#
Raw Normal View History

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