System.Windows.Forms.Control.OnParentBindingContextChanged(System.EventArgs)

Here are the examples of the csharp api class System.Windows.Forms.Control.OnParentBindingContextChanged(System.EventArgs) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: MapViewer
Source File: DataListView.cs
protected override void OnParentBindingContextChanged(EventArgs e)
        {
            base.OnParentBindingContextChanged(e);

            // BindingContext is an ambient property - by default it simply picks
            // up the parent control's context (unless something has explicitly
            // given us our own). So we must respond to changes in our parent's
            // binding context in the same way we would changes to our own
            // binding context.

            // THINK: Do we need to forward this to the adapter?
        }