BindingNavigator.CountItem Property

Definition

Gets or sets the ToolStripItem that displays the total number of items in the associated BindingSource.

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

Property Value

A ToolStripItem that displays the total number of items in the associated BindingSource.

Attributes

Remarks

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

The count of items is accessed through the Count property of the BindingSource.

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

Applies to

See also