main
 1using System;
 2using System.Windows.Forms;
 3
 4namespace MoMoney.Presentation.Winforms.Helpers
 5{
 6    public class SuspendLayout : IDisposable
 7    {
 8        readonly Control control;
 9
10        public SuspendLayout(Control control)
11        {
12            this.control = control;
13            control.SuspendLayout();
14        }
15
16        public void Dispose()
17        {
18            control.ResumeLayout();
19        }
20    }
21}