You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
395 B

using Apewer;
using Apewer.Surface;
using System;
using System.Windows.Forms;
/// <summary>扩展方法。</summary>
public static class Extensions_Apewer_Windows
{
#region Surface
#if NETFX || NETCORE
/// <summary></summary>
public static void Invoke(this Control @this, Action action, bool async = false) => FormsUtility.Invoke(@this, action, async);
#endif
#endregion
}