ToolBar.ToolBarButtonCollection.Contains(ToolBarButton) Méthode

Définition

Détermine si le bouton de barre d’outils spécifié est membre de la collection.

public:
 bool Contains(System::Windows::Forms::ToolBarButton ^ button);
public bool Contains(System.Windows.Forms.ToolBarButton button);
member this.Contains : System.Windows.Forms.ToolBarButton -> bool
Public Function Contains (button As ToolBarButton) As Boolean

Paramètres

button
ToolBarButton

À ToolBarButton localiser dans la collection.

Retours

true si l’objet ToolBarButton est membre de la collection ; sinon, false.

Exemples

L’exemple de ToolBarButton code suivant supprime un contrôle existant ToolBar s’il existe et ajoute et insère quatre nouveaux ToolBarButton objets à l’objet ToolBar. Cet exemple nécessite que vous disposiez d’un FormToolBar contrôle dessus.

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

Remarques

Cette méthode vous permet de déterminer si un ToolBarButton membre de la collection est membre avant de tenter d’effectuer des opérations sur le ToolBarButton. Vous pouvez utiliser cette méthode pour confirmer qu’une ToolBarButton personne a été ajoutée ou est toujours membre de la collection.

S’applique à