main
 1using System;
 2using System.Windows.Forms;
 3
 4namespace MoMoney.Presentation.Winforms.Helpers
 5{
 6    static public class ControlExtensions
 7    {
 8        static public IDisposable suspend_layout(this Control control)
 9        {
10            return new SuspendLayout(control);
11        }
12    }
13}