Files
Shrlalgo.RvKits/AntDesignWPF/Controls/ClosingWindowEventHandlerArgs.cs
2025-07-31 20:12:01 +08:00

10 lines
174 B
C#

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