RowDefinitionCollection.Contains(RowDefinition) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si un RowDefinition donné existe dans un RowDefinitionCollection.
public:
virtual bool Contains(System::Windows::Controls::RowDefinition ^ value);
public bool Contains (System.Windows.Controls.RowDefinition value);
abstract member Contains : System.Windows.Controls.RowDefinition -> bool
override this.Contains : System.Windows.Controls.RowDefinition -> bool
Public Function Contains (value As RowDefinition) As Boolean
Paramètres
- value
- RowDefinition
Identifie le RowDefinition testé.
Retours
true
si le RowDefinition existe dans la collection ; sinon, false
.
Implémente
Exemples
L’exemple suivant montre comment utiliser la Contains méthode pour déterminer si un RowDefinition existe dans un RowDefinitionCollection.
private void containsRow(object sender, RoutedEventArgs e)
{
if (grid1.RowDefinitions.Contains(rowDef1))
{
tp2.Text = "Grid Contains RowDefinition rowDef1";
}
else
{
tp2.Text = "Grid Does Not Contain RowDefinition rowDef1";
}
}
Private Sub containsRow(ByVal sender As Object, ByVal e As RoutedEventArgs)
If (grid1.RowDefinitions.Contains(rowDef1)) Then
tp2.Text = "Grid Contains RowDefinition rowDef1"
Else
tp2.Text = "Grid Does Not Contain RowDefinition rowDef1"
End If
End Sub
Pour afficher l’exemple complet, consultez How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections.