Binda.DefaultBindaStrategy.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)
        {
            control.DataBindings.Add(ControlPropertyName, source, propertyName, true,
                                     DataSourceUpdateMode.OnPropertyChanged);
        }