RowDefinitionCollection.Contains(RowDefinition) Metoda

Definicja

Określa, czy dana RowDefinition wartość istnieje w obiekcie 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

Parametry

value
RowDefinition

RowDefinition Identyfikuje testowany element.

Zwraca

Boolean

true jeśli obiekt RowDefinition istnieje w kolekcji; w przeciwnym razie false.

Implementuje

Przykłady

W poniższym przykładzie pokazano, jak za pomocą Contains metody określić, czy RowDefinition element istnieje w obiekcie 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

Aby wyświetlić kompletny przykład, zobacz How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections (Instrukcje: manipulowanie kolumnami i wierszami przy użyciu kolekcji ColumnDefinitionsCollections i RowDefinitionsCollections).

Dotyczy

Zobacz też