10 lines
168 B
C#
10 lines
168 B
C#
|
|
namespace AntdWpf.Controls
|
|||
|
|
{
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
public class ClosingWindowEventHandlerArgs : EventArgs
|
|||
|
|
{
|
|||
|
|
public bool Cancelled { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|