BindingNavigator.MoveFirstItem Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the ToolStripItem that is associated with the Move First functionality.
public:
property System::Windows::Forms::ToolStripItem ^ MoveFirstItem { System::Windows::Forms::ToolStripItem ^ get(); void set(System::Windows::Forms::ToolStripItem ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ReferenceConverter))]
public System.Windows.Forms.ToolStripItem MoveFirstItem { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ReferenceConverter))]
public System.Windows.Forms.ToolStripItem? MoveFirstItem { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ReferenceConverter))>]
member this.MoveFirstItem : System.Windows.Forms.ToolStripItem with get, set
Public Property MoveFirstItem As ToolStripItem
Property Value
A ToolStripItem that represents the Move First button for the BindingSource.
- Attributes
Remarks
When set, this property generates the Click event handler for the Move First button. This event handler calls the MoveFirst method when the Move First 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 Move First button under the following run-time circumstances: the BindingSource property is null
, the BindingSource.Position property is zero, or AllowNew for the related BindingSource is false
.
In the default implementation, this property represents a control of type ToolStripButton.