다음을 통해 공유


UIElementCollection.First 메서드

정의

UIElementCollection의 항목을 반복할 수 있는 반복기 개체를 반환합니다.

public:
 virtual IIterator<UIElement ^> ^ First() = IIterable<UIElement ^>::First;
IIterator<UIElement> First();
public IIterator<UIElement> First();
function first()
Public Function First () As IIterator(Of UIElement)

반환

반복기 개체입니다. 반복기의 현재 위치는 0-인덱스 위치이거나 컬렉션이 비어 있는 경우 컬렉션 끝에 있습니다.

구현

설명

First에서 반환된 반복기를 유지하는 편리한 방법은 자동 형식 추론 키워드(keyword) 선언된 변수에 반환 값을 할당하는 것입니다. 그런 다음 , IIterator API를 while 루프의 일부로 사용합니다. 예를 들면 다음과 같습니다.

auto iterator1{ uieCollection.First() };
while (iterator1.HasCurrent())
{
    Windows::UI::Xaml::UIElement currentItem{ iterator1.Current() };
    // Your logic here that does something with currentItem.
    iterator1.MoveNext();
}
auto iterator1 = uieCollection->First();
while (iterator1->HasCurrent)
{
    auto currentItem = iterator1->Current;
    //your logic here that does something with currentItem
    iterator1->MoveNext();
}

적용 대상

추가 정보