- Notifications
You must be signed in to change notification settings - Fork1.6k
Open
Labels
Milestone
Description
Right now the xml summary forControl.ResetBindings
reads:
<summary>Causes a control bound to the<see cref="T:System.Windows.Forms.BindingSource"/>to reread all the itemsin the list and refresh their displayed values.</summary>
The implementation clears all the bindings though:
publicvoidResetBindings(){ControlBindingsCollectionbindings=(ControlBindingsCollection)Properties.GetObject(PropBindings);if(bindings!=null){bindings.Clear();}}
I think perhaps this summary was copied fromBindingSource
? (Docs)