Binda.ListControlBindaStrategy.BindControl C# (CSharp) Method

BindControl() public method

public BindControl ( Control control, object source, string propertyName ) : void
control System.Windows.Forms.Control
source object
propertyName string
return void
        public override void BindControl(Control control, object source, string propertyName)
        {
            SetControlValue(control, source, propertyName);
            control.DataBindings.Add("SelectedValue", source,
                                     propertyName, true,
                                     DataSourceUpdateMode.OnPropertyChanged);
        }