-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Open
Labels
Pri2Indicates issues/PRs that are medium priorityIndicates issues/PRs that are medium priorityPri3Indicates issues/PRs that are low priorityIndicates issues/PRs that are low priorityarea-WinFormsIssues or PRs that relate to WinForms.Issues or PRs that relate to WinForms.help wantedGood for community contributors to help [up-for-grabs]Good for community contributors to help [up-for-grabs]
Milestone
Description
Right now the xml summary for Control.ResetBindings
reads:
<summary>Causes a control bound to the <see cref="T:System.Windows.Forms.BindingSource" /> to reread all the items in the list and refresh their displayed values.</summary>
The implementation clears all the bindings though:
public void ResetBindings() {
ControlBindingsCollection bindings = (ControlBindingsCollection)Properties.GetObject(PropBindings);
if (bindings != null) {
bindings.Clear();
}
}
I think perhaps this summary was copied from BindingSource
? (Docs)
Metadata
Metadata
Assignees
Labels
Pri2Indicates issues/PRs that are medium priorityIndicates issues/PRs that are medium priorityPri3Indicates issues/PRs that are low priorityIndicates issues/PRs that are low priorityarea-WinFormsIssues or PRs that relate to WinForms.Issues or PRs that relate to WinForms.help wantedGood for community contributors to help [up-for-grabs]Good for community contributors to help [up-for-grabs]