ToolStripItemCollection.Add Método

Definição

Adiciona um ToolStripItem à coleção.

Sobrecargas

Add(Image)

Adiciona um ToolStripItem que exibe a imagem especificada à coleção.

Add(String)

Adiciona um ToolStripItem que exibe o texto especificado à coleção.

Add(ToolStripItem)

Adiciona o item especificado ao final da coleção.

Add(String, Image)

Adiciona um ToolStripItem que exibe a imagem e o texto especificados à coleção.

Add(String, Image, EventHandler)

Adiciona um ToolStripItem que exibe a imagem e o texto especificados à coleção e que gera o evento Click.

Add(Image)

Adiciona um ToolStripItem que exibe a imagem especificada à coleção.

public:
 System::Windows::Forms::ToolStripItem ^ Add(System::Drawing::Image ^ image);
public System.Windows.Forms.ToolStripItem Add (System.Drawing.Image image);
public System.Windows.Forms.ToolStripItem Add (System.Drawing.Image? image);
member this.Add : System.Drawing.Image -> System.Windows.Forms.ToolStripItem
Public Function Add (image As Image) As ToolStripItem

Parâmetros

image
Image

A Image a ser exibida no ToolStripItem.

Retornos

O novo ToolStripItem.

Aplica-se a

Add(String)

Adiciona um ToolStripItem que exibe o texto especificado à coleção.

public:
 System::Windows::Forms::ToolStripItem ^ Add(System::String ^ text);
public System.Windows.Forms.ToolStripItem Add (string text);
public System.Windows.Forms.ToolStripItem Add (string? text);
member this.Add : string -> System.Windows.Forms.ToolStripItem
Public Function Add (text As String) As ToolStripItem

Parâmetros

text
String

O texto a ser exibido no ToolStripItem.

Retornos

O novo ToolStripItem.

Aplica-se a

Add(ToolStripItem)

Adiciona o item especificado ao final da coleção.

public:
 int Add(System::Windows::Forms::ToolStripItem ^ value);
public int Add (System.Windows.Forms.ToolStripItem value);
member this.Add : System.Windows.Forms.ToolStripItem -> int
Public Function Add (value As ToolStripItem) As Integer

Parâmetros

value
ToolStripItem

O ToolStripItem a adicionar ao final da coleção.

Retornos

Um Int32 que representa o índice baseado em zero do novo item na coleção.

Exceções

O parâmetro value é null.

Aplica-se a

Add(String, Image)

Adiciona um ToolStripItem que exibe a imagem e o texto especificados à coleção.

public:
 System::Windows::Forms::ToolStripItem ^ Add(System::String ^ text, System::Drawing::Image ^ image);
public System.Windows.Forms.ToolStripItem Add (string text, System.Drawing.Image image);
public System.Windows.Forms.ToolStripItem Add (string? text, System.Drawing.Image? image);
member this.Add : string * System.Drawing.Image -> System.Windows.Forms.ToolStripItem
Public Function Add (text As String, image As Image) As ToolStripItem

Parâmetros

text
String

O texto a ser exibido no ToolStripItem.

image
Image

A Image a ser exibida no ToolStripItem.

Retornos

O novo ToolStripItem.

Aplica-se a

Add(String, Image, EventHandler)

Adiciona um ToolStripItem que exibe a imagem e o texto especificados à coleção e que gera o evento Click.

public:
 System::Windows::Forms::ToolStripItem ^ Add(System::String ^ text, System::Drawing::Image ^ image, EventHandler ^ onClick);
public System.Windows.Forms.ToolStripItem Add (string text, System.Drawing.Image image, EventHandler onClick);
public System.Windows.Forms.ToolStripItem Add (string? text, System.Drawing.Image? image, EventHandler? onClick);
member this.Add : string * System.Drawing.Image * EventHandler -> System.Windows.Forms.ToolStripItem
Public Function Add (text As String, image As Image, onClick As EventHandler) As ToolStripItem

Parâmetros

text
String

O texto a ser exibido no ToolStripItem.

image
Image

A Image a ser exibida no ToolStripItem.

onClick
EventHandler

Aciona o evento Click.

Retornos

O novo ToolStripItem.

Aplica-se a