New to Telerik UI for WinFormsStart a free 30-day trial

BindingNavigator

Updated over 6 months ago

The BindingNavigator control in your application will be converted to RadBindingNavigator. The following tables describe which properties and methods are removed and which are replaced with similar equivalents.

PropertiesActionRadControls Equivalent
AllowItemReorderRemoved
AllowMergeRemoved
CanOverflowRemoved
GripMarginRemoved
GripStyleRemoved
RenderModeRemoved
StretchRemoved
TextDirectionProduces Error
AddNewItemReplacedBindingNavigatorElement.AddNewButton
CountItemReplacedBindingNavigatorElement.PageLabel
DeleteItemReplacedBindingNavigatorElement.DeleteButton
MoveFirstItemReplacedBindingNavigatorElement.FirstButton
MoveLastItemReplacedBindingNavigatorElement.LastButton
MoveNextItemReplacedBindingNavigatorElement.NextButto
MovePreviousItemReplacedBindingNavigatorElement.PreviousButton
PositionItemReplacedBindingNavigatorElement.CurrentNumberTextBox
EventsActionRadControls Equivalent
BeginDragProduces Error
EndDragProduces Error
ItemAddedProduces Error
ItemClickedProduces Error
ItemRemovedProduces Error
LayoutCompletedProduces Error
LayoutStyleChangedProduces Error
PaintGripProduces Error
RefreshItemsProduces Error
RendererChangedProduces Error
MethodsActionRadControls Equivalent
AddStandardItems()Produces Error
GetItemAt()Produces Error

Standard BindingNavigator and our RadBindingNavigator have different mapping of items' name. That's why the navigation will not work after the conversion process is finished. In order to resolve the issue, you need to change the Name properties of each item manually in the Designer file. Each name should starts with BindingNavigator's name plus item's name. For example: this.bindingNavigator1.Name = "bindingNavigator1";

We strongly recommend you to change the Name properties of each item manually after opening the form at design time. In addition, if there are other items added to the navigator, they will be converted as well, their properties, events and methods are listed here.

Standard Binding NavigatorTelerik RadBindingNavigator
this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";this.bindingNavigatorAddNewItem.Name = "bindingNavigator1AddNewItem";
this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";this.bindingNavigatorCountItem.Name = "bindingNavigator1CountItem";
this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";this.bindingNavigatorDeleteItem.Name = "bindingNavigator1DeleteItem";
this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";this.bindingNavigatorDeleteItem.Name = "bindingNavigator1MoveFirstItem";
this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";this.bindingNavigatorMoveLastItem.Name = "bindingNavigator1MoveLastItem";
this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";this.bindingNavigatorMoveNextItem.Name = "bindingNavigator1MoveNextItem";
this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";this.bindingNavigatorMovePreviousItem.Name = "bindingNavigator1MovePreviousItem";
this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";this.bindingNavigatorPositionItem.Name = "bindingNavigator1PositionItem";
Not finding the help you need?
Contact Support