BindingNavigator.AddStandardItems Method

Definition

Adds the standard set of navigation items to the BindingNavigator control.

public:
 virtual void AddStandardItems();
public virtual void AddStandardItems ();
abstract member AddStandardItems : unit -> unit
override this.AddStandardItems : unit -> unit
Public Overridable Sub AddStandardItems ()

Remarks

The AddStandardItems method adds the standard set of user interface ToolStripItem objects to the BindingNavigator tool strip for basic navigation operations, such as Move First, Move Last, and Add New.

Override AddStandardItems in derived classes to define additional or alternative tool strip items. To ensure optimal design-time support for your derived class, make sure each item has a meaningful value in its Name property. At design time, this will be used to generate a unique name for the corresponding member variable. The item's Name property will then be updated to match the name given to the member variable.

Note

This method does not explicitly remove any previously existing items from the BindingNavigator, but does set new values for the MoveNextItem, MovePreviousItem, MoveFirstItem, MoveLastItem, PositionItem, CountItem, AddNewItem and DeleteItem properties. Also AddStandardItems does not suspend layout while items are being added.

Applies to

See also