次の方法で共有


RowDefinitionCollection.IndexOf(RowDefinition) メソッド

定義

RowDefinition 内の指定された RowDefinitionCollection のインデックス位置を返します。

public:
 virtual int IndexOf(System::Windows::Controls::RowDefinition ^ value);
public int IndexOf (System.Windows.Controls.RowDefinition value);
abstract member IndexOf : System.Windows.Controls.RowDefinition -> int
override this.IndexOf : System.Windows.Controls.RowDefinition -> int
Public Function IndexOf (value As RowDefinition) As Integer

パラメーター

value
RowDefinition

目的のインデックス位置を持つ RowDefinition

戻り値

Int32

コレクションに存在する場合は value のインデックス。それ以外の場合は -1。

実装

次の例では、メソッドを使用IndexOfして、内のインデックス位置を決定する方法を示します。RowDefinition RowDefinitionCollection

private void insertRowAt(object sender, RoutedEventArgs e)
{
    rowDef1 = new RowDefinition();
    grid1.RowDefinitions.Insert(grid1.RowDefinitions.Count, rowDef1);
    tp1.Text = "RowDefinition added at index position " + grid1.RowDefinitions.IndexOf(rowDef1).ToString();
}
Private Sub insertRowAt(ByVal sender As Object, ByVal e As RoutedEventArgs)
    Dim rowDef1 As New RowDefinition
    grid1.RowDefinitions.Insert(grid1.RowDefinitions.Count, rowDef1)
    tp1.Text = "RowDefinition added at index position " + grid1.RowDefinitions.IndexOf(rowDef1).ToString()
End Sub

完全なサンプルを表示するには、「 方法: ColumnDefinitionsCollections と RowDefinitionsCollections を使用して列と行を操作する」を参照してください。

適用対象

こちらもご覧ください