System.Windows.Forms.UserControl.OnCreateControl C# (CSharp) Method

OnCreateControl() private method

private OnCreateControl ( ) : void
return void
		protected override void OnCreateControl() {
			base.OnCreateControl();

			// The OnCreateControl isn't neccessarily raised *before* it
			// becomes first visible, but that's the best we've got
			OnLoad(EventArgs.Empty);
		}