C# Класс WinRTXamlToolkit.AwaitableUI.FrameworkElementExtensions

Contains extension methods to wait for FrameworkElement events.
Показать файл Открыть проект

Открытые методы

Метод Описание
WaitForImagesToLoadAsync ( this frameworkElement, int millisecondsTimeout ) : System.Threading.Tasks.Task

Waits for all the image sources in the visual tree to complete loading (useful to call before a page transition).

Note that it does not take popups into account.

WaitForLayoutUpdateAsync ( this frameworkElement ) : System.Threading.Tasks.Task

Waits for the next layout update event.

WaitForLoadedAsync ( this frameworkElement ) : System.Threading.Tasks.Task

Waits for the element to load (construct and add to the main object tree).

WaitForNonZeroSizeAsync ( this frameworkElement ) : System.Threading.Tasks.Task

Waits for the size of the element to become non-zero.

WaitForUnloadedAsync ( this frameworkElement ) : System.Threading.Tasks.Task

Waits for the element to unload (disconnect from the main object tree).

Описание методов

WaitForImagesToLoadAsync() публичный статический Метод

Waits for all the image sources in the visual tree to complete loading (useful to call before a page transition).
Note that it does not take popups into account.
public static WaitForImagesToLoadAsync ( this frameworkElement, int millisecondsTimeout ) : System.Threading.Tasks.Task
frameworkElement this The framework element.
millisecondsTimeout int The timeout in milliseconds.
Результат System.Threading.Tasks.Task

WaitForLayoutUpdateAsync() публичный статический Метод

Waits for the next layout update event.
public static WaitForLayoutUpdateAsync ( this frameworkElement ) : System.Threading.Tasks.Task
frameworkElement this The framework element.
Результат System.Threading.Tasks.Task

WaitForLoadedAsync() публичный статический Метод

Waits for the element to load (construct and add to the main object tree).
public static WaitForLoadedAsync ( this frameworkElement ) : System.Threading.Tasks.Task
frameworkElement this
Результат System.Threading.Tasks.Task

WaitForNonZeroSizeAsync() публичный статический Метод

Waits for the size of the element to become non-zero.
public static WaitForNonZeroSizeAsync ( this frameworkElement ) : System.Threading.Tasks.Task
frameworkElement this The framework element.
Результат System.Threading.Tasks.Task

WaitForUnloadedAsync() публичный статический Метод

Waits for the element to unload (disconnect from the main object tree).
public static WaitForUnloadedAsync ( this frameworkElement ) : System.Threading.Tasks.Task
frameworkElement this
Результат System.Threading.Tasks.Task