System.Windows.Forms.Control.OnParentBindingContextChanged C# (CSharp) Method

OnParentBindingContextChanged() private method

private OnParentBindingContextChanged ( EventArgs e ) : void
e System.EventArgs
return void
		protected virtual void OnParentBindingContextChanged(EventArgs e) {
			if (binding_context==null && Parent != null) {
				binding_context=Parent.binding_context;
				OnBindingContextChanged(e);
			}
		}
Control