13 lines
292 B
C#
13 lines
292 B
C#
using Pilz.UI.WinForms.Dialogs;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Pilz.UI.WinForms.Extensions;
|
|
|
|
public static class FlyoutBaseExtensions
|
|
{
|
|
public static bool IsValid(this FlyoutBase? @this)
|
|
{
|
|
return @this != null && @this.Result == DialogResult.OK;
|
|
}
|
|
}
|