BindingNavigator.AddNewItem Property

Definition

Gets or sets the ToolStripItem that represents the Add New button.

public:
 property System::Windows::Forms::ToolStripItem ^ AddNewItem { System::Windows::Forms::ToolStripItem ^ get(); void set(System::Windows::Forms::ToolStripItem ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ReferenceConverter))]
public System.Windows.Forms.ToolStripItem AddNewItem { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ReferenceConverter))]
public System.Windows.Forms.ToolStripItem? AddNewItem { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ReferenceConverter))>]
member this.AddNewItem : System.Windows.Forms.ToolStripItem with get, set
Public Property AddNewItem As ToolStripItem

Property Value

A ToolStripItem that represents the Add New button for the BindingSource. The default is null.

Attributes

Remarks

When set, the AddNewItem property generates the Click event handler for the Add New button. This event handler calls the AddNew method when the Add New button is clicked at run time.

This property is null if it was not previously set and it is accessed before the AddStandardItems method is implicitly or explicitly called.

The BindingNavigator control will disable the Add New button if the BindingSource property is null or the AllowNew property is false.

In the default implementation, this property represents a control of type ToolStripButton.

Applies to

See also