ToolBar.ToolBarButtonCollection.Add 方法

定义

将新的工具栏按钮添加到工具栏按钮集合的末尾。

重载

Add(String)

使用指定的 Text 属性值将一个新工具栏按钮添加到工具栏按钮集合的末尾。

Add(ToolBarButton)

将指定的工具栏按钮添加到工具栏按钮集合的末尾。

Add(String)

使用指定的 Text 属性值将一个新工具栏按钮添加到工具栏按钮集合的末尾。

public:
 int Add(System::String ^ text);
public int Add (string text);
member this.Add : string -> int
Public Function Add (text As String) As Integer

参数

text
String

要在新的 ToolBarButton 上显示的文本。

返回

Int32

添加到集合中的 ToolBarButton 的从零开始的索引值。

示例

下面的代码示例从控件中删除现有ToolBarButtonToolBar对象(如果存在)并向其添加并插入四个新ToolBarButton对象ToolBar。 此示例要求你具有 Form 一个 ToolBar 控件。

void AddToolbarButtons( ToolBar^ toolBar )
{
   if (  !toolBar->Buttons->IsReadOnly )
   {
      
      // If toolBarButton1 in in the collection, remove it.
      if ( toolBar->Buttons->Contains( toolBarButton1 ) )
      {
         toolBar->Buttons->Remove( toolBarButton1 );
      }
      
      // Create three toolbar buttons.
      ToolBarButton^ tbb1 = gcnew ToolBarButton( "tbb1" );
      ToolBarButton^ tbb2 = gcnew ToolBarButton( "tbb2" );
      ToolBarButton^ tbb3 = gcnew ToolBarButton( "tbb3" );
      
      // Add toolbar buttons to the toolbar.
      array<ToolBarButton^>^buttons = {tbb2,tbb3};
      toolBar->Buttons->AddRange( buttons );
      toolBar->Buttons->Add( "tbb4" );
      
      // Insert tbb1 into the first position in the collection.
      toolBar->Buttons->Insert( 0, tbb1 );
   }
}
private void AddToolbarButtons(ToolBar toolBar)
{
   if(!toolBar.Buttons.IsReadOnly)
   {
      // If toolBarButton1 in in the collection, remove it.
      if(toolBar.Buttons.Contains(toolBarButton1))
      {
         toolBar.Buttons.Remove(toolBarButton1);
      }
    
      // Create three toolbar buttons.
      ToolBarButton tbb1 = new ToolBarButton("tbb1");
      ToolBarButton tbb2 = new ToolBarButton("tbb2");
      ToolBarButton tbb3 = new ToolBarButton("tbb3");
      
      // Add toolbar buttons to the toolbar.		
      toolBar.Buttons.AddRange(new ToolBarButton[] {tbb2, tbb3});
      toolBar.Buttons.Add("tbb4");
    
      // Insert tbb1 into the first position in the collection.
      toolBar.Buttons.Insert(0, tbb1);
   }
}
Private Sub AddToolbarButtons(toolBar As ToolBar)
   If Not toolBar.Buttons.IsReadOnly Then
      ' If toolBarButton1 in in the collection, remove it.
      If toolBar.Buttons.Contains(toolBarButton1) Then
         toolBar.Buttons.Remove(toolBarButton1)
      End If

      ' Create three toolbar buttons.
      Dim tbb1 As New ToolBarButton("tbb1")
      Dim tbb2 As New ToolBarButton("tbb2")
      Dim tbb3 As New ToolBarButton("tbb3")

      ' Add toolbar buttons to the toolbar.		
      toolBar.Buttons.AddRange(New ToolBarButton() {tbb2, tbb3})
      toolBar.Buttons.Add("tbb4")

      ' Insert tbb1 into the first position in the collection.
      toolBar.Buttons.Insert(0, tbb1)
   End If
End Sub

注解

还可以使用AddRangeInsert方法或其他版本的Add方法向集合添加新ToolBarButton对象。

若要删除之前添加的项ToolBarButton,请使用RemoveRemoveAtClear方法。

另请参阅

适用于

Add(ToolBarButton)

将指定的工具栏按钮添加到工具栏按钮集合的末尾。

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

参数

button
ToolBarButton

将添加到所有现有按钮之后的 ToolBarButton

返回

Int32

添加到集合中的 ToolBarButton 的从零开始的索引值。

示例

下面的代码示例向 ToolBarButton 现有 ToolBar 按钮添加新控件。 工具栏按钮将添加到集合末尾 ToolBar.Buttons

public:
   void AddMyButton()
   {
      ToolBarButton^ toolBarButton1 = gcnew ToolBarButton;
      toolBarButton1->Text = "Print";
      
      // Add the new toolbar button to the toolbar.
      toolBar1->Buttons->Add( toolBarButton1 );
   }
public void AddMyButton()
 {
    ToolBarButton toolBarButton1 = new ToolBarButton();
    toolBarButton1.Text = "Print";
 
    // Add the new toolbar button to the toolbar.
    toolBar1.Buttons.Add(toolBarButton1);
 }
Public Sub AddMyButton()
    Dim toolBarButton1 As New ToolBarButton()
    toolBarButton1.Text = "Print"
    
    ' Add the new toolbar button to the toolbar.
    toolBar1.Buttons.Add(toolBarButton1)
End Sub

注解

还可以使用AddRangeInsert方法或其他版本的Add方法向集合添加新ToolBarButton对象。

若要删除之前添加的项ToolBarButton,请使用RemoveRemoveAtClear方法。

另请参阅

适用于