UIElementCollection.First 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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();
}