BindingNavigator
Represents the navigation and manipulation user interface (UI) for controls that are bound to a data source.
The Wisej.NET BindingNavigator
provides standardized data navigation and manipulation. Typically paired with a BindingSource
control through the BindingSource
property, it enables intuitive record navigation and interaction.
Features
Default Interface
The BindingNavigator
includes ToolStrip elements for common data operations:
Navigation buttons (First, Previous, Next, Last)
Position and count indicators
Data manipulation buttons (Add, Delete)
Control-Source Mapping
When bound to a BindingSource
, UI controls map directly to source functionality:
Move First
MoveFirstItem
MoveFirst
Move Previous
MovePreviousItem
MovePrevious
Current Position
PositionItem
Current
Count
CountItem
Count
Move Next
MoveNextItem
MoveNext
Move Last
MoveLastItem
MoveLast
Add New
AddNewItem
AddNew
Delete
DeleteItem
RemoveCurrent
Customization
All contained controls support customization while maintaining the standard navigation interface.
For a full list of properties, methods and events see the API documentation.
Last updated
Was this helpful?