BetterExplorer.ListView.ListView C# (CSharp) Метод

ListView() публичный Метод

public ListView ( ) : System
Результат System
		public ListView() {
			//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);
		}