System.Windows.Forms.Form.CallLoad C# (CSharp) 메소드

CallLoad() 개인적인 메소드

private CallLoad ( ) : void
리턴 void
		internal void CallLoad ()
		{
			if (Load != null)
				Load (this, new EventArgs ());
		}
		public EventHandler Load { get; set; }

Usage Example

예제 #1
0
 public override void BecomeKeyWindow()
 {
     base.BecomeKeyWindow();
     if (!hasLoaded)
     {
         m_parent.CallLoad();
         hasLoaded = true;
     }
 }
Form