ATMLCommonLibrary.controls.Extensions.IsInDesignMode C# (CSharp) Méthode

IsInDesignMode() public static méthode

Extension method to return if the control is in design mode
public static IsInDesignMode ( this control ) : bool
control this Control to examine
Résultat bool
        public static bool IsInDesignMode(this System.Windows.Forms.Control control)
        {
            return ResolveDesignMode(control) || (LicenseManager.UsageMode == LicenseUsageMode.Designtime);
        }