C# Class Caliburn.Micro.BindingScope

Provides methods for searching a given scope for named elements.
Mostra file Open project: bryanhunter/CaliburnMicroTalk Class Usage Examples

Public Properties

Property Type Description
GetNamedElements IEnumerable>.Func

Public Methods

Method Description
FindName ( this elementsToSearch, string name ) : FrameworkElement

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

Method Details

FindName() public static method

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.
return FrameworkElement

Property Details

GetNamedElements public_oe static_oe property

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
return IEnumerable>.Func