19 lines
344 B
C#
19 lines
344 B
C#
using System;
|
|
|
|
namespace WPFluent.Controls;
|
|
|
|
public sealed class MessageBoxClosingDeferral
|
|
{
|
|
private readonly Action _handler;
|
|
|
|
internal MessageBoxClosingDeferral(Action handler)
|
|
{
|
|
_handler = handler ?? throw new ArgumentNullException(nameof(handler));
|
|
}
|
|
|
|
public void Complete()
|
|
{
|
|
_handler();
|
|
}
|
|
}
|