System.Windows.Forms.Control.OnBindingContextChanged C# (CSharp) 메소드

OnBindingContextChanged() 개인적인 메소드

private OnBindingContextChanged ( EventArgs e ) : void
e System.EventArgs
리턴 void
		protected virtual void OnBindingContextChanged(EventArgs e) {
			CheckDataBindings ();
			EventHandler eh = (EventHandler)(Events [BindingContextChangedEvent]);
			if (eh != null)
				eh (this, e);
			for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBindingContextChanged(e);
		}
Control