Files
FSI.BT.IR.Tools/FSI.BT.Tools/SystemTrayMenu/Utilities/FormsExtensions.cs
Stephan Maier 647f938eee v1.2
2024-08-27 08:10:27 +02:00

25 lines
584 B
C#

// <copyright file="FormsExtensions.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace FSI.BT.Tools.SystemTrayMenu.Utilities
{
using System;
using System.Windows.Forms;
internal static class FormsExtensions
{
public static void HandleInvoke(this Control instance, Action action)
{
if (instance.InvokeRequired)
{
instance.Invoke(action);
}
else
{
action();
}
}
}
}