C# 클래스 Microsoft.Phone.Controls.ItemsControlExtensions

Provides helper methods to work with ItemsControl.
파일 보기 프로젝트 열기: Kinnara/WPToolkit 1 사용 예제들

공개 메소드들

메소드 설명
GetItemsInViewPort ( this list ) : IList

Gets the items that are currently in the view port of an ItemsControl with a ScrollViewer.

GetItemsInViewPort ( this list, IList items ) : void

Gets the items that are currently in the view port of an ItemsControl with a ScrollViewer and adds them into a list of weak references.

메소드 상세

GetItemsInViewPort() 공개 정적인 메소드

Gets the items that are currently in the view port of an ItemsControl with a ScrollViewer.
public static GetItemsInViewPort ( this list ) : IList
list this The ItemsControl to search on.
리턴 IList

GetItemsInViewPort() 공개 정적인 메소드

Gets the items that are currently in the view port of an ItemsControl with a ScrollViewer and adds them into a list of weak references.
public static GetItemsInViewPort ( this list, IList items ) : void
list this /// The items control to search on. ///
items IList /// The list of weak references where the items in /// the view port will be added. ///
리턴 void