Binda.DefaultBindaStrategy.BindControl C# (CSharp) Méthode

BindControl() public méthode

public BindControl ( Control control, object source, string propertyName ) : void
control System.Windows.Forms.Control
source object
propertyName string
Résultat void
        public override void BindControl(Control control, object source, string propertyName)
        {
            control.DataBindings.Add(ControlPropertyName, source, propertyName, true,
                                     DataSourceUpdateMode.OnPropertyChanged);
        }