System.Windows.Forms.ListView.ListView_Invalidated C# (CSharp) 메소드

ListView_Invalidated() 개인적인 메소드

private ListView_Invalidated ( object sender, InvalidateEventArgs e ) : void
sender object
e InvalidateEventArgs
리턴 void
		private void ListView_Invalidated (object sender, InvalidateEventArgs e)
		{
			// When the ListView is invalidated, we need to invalidate
			// the child controls.
			header_control.Invalidate ();
			item_control.Invalidate ();
		}
ListView