C# Класс Caliburn.Micro.BindingScope

Provides methods for searching a given scope for named elements.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
GetNamedElements IEnumerable>.Func

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

Метод Описание
FindName ( this elementsToSearch, string name ) : FrameworkElement

Searches through the list of named elements looking for a case-insensitive match.

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

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

Searches through the list of named elements looking for a case-insensitive match.
public static FindName ( this elementsToSearch, string name ) : FrameworkElement
elementsToSearch this The named elements to search through.
name string The name to search for.
Результат FrameworkElement

Описание свойств

GetNamedElements публичное статическое свойство

Gets all the FrameworkElement instances with names in the scope.
Pass in a DependencyObject and receive a list of named FrameworkElement instances in the same scope.
public static Func> GetNamedElements
Результат IEnumerable>.Func