AnalysisEngine.BetterListView.BetterListView C# (CSharp) Method

BetterListView() public method

public BetterListView ( ) : System
return System
        public BetterListView()
        {
            //Activate double buffering
            //this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true);

            //Enable the OnNotifyMessage event so we get a chance to filter out
            // Windows messages before they get to the form's WndProc
            this.SetStyle(ControlStyles.EnableNotifyMessage, true);

            this.Resize += BetterListView_Resize;
        }