RowDefinitionCollection.Contains(RowDefinition) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se un oggetto RowDefinition specificato si trova in 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
Parametri
- value
- RowDefinition
Identifica l’oggetto RowDefinition che si sta testando.
Restituisce
true se RowDefinition è incluso nell'insieme, in caso contrario false.
Implementazioni
Esempio
Nell'esempio seguente viene illustrato come utilizzare il Contains metodo per determinare se un RowDefinition oggetto esiste in un oggetto 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
Per visualizzare l'esempio completo, vedere Procedura: Modificare colonne e righe usando ColumnDefinitionsCollections e RowDefinitionsCollections.