.NET Framework Class Library
Application..::.LoadComponent Method (Object, Uri)

Loads a XAML file that is located at the specified uniform resource identifier (URI) and converts it to an instance of the object that is specified by the root element of the XAML file.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
Syntax

Visual Basic (Declaration)
Public Shared Sub LoadComponent ( _
    component As Object, _
    resourceLocator As Uri _
)
Visual Basic (Usage)
Dim component As Object
Dim resourceLocator As Uri

Application.LoadComponent(component, resourceLocator)
C#
public static void LoadComponent(
    Object component,
    Uri resourceLocator
)
Visual C++
public:
static void LoadComponent(
    Object^ component, 
    Uri^ resourceLocator
)
JScript
public static function LoadComponent(
    component : Object, 
    resourceLocator : Uri
)
XAML
You cannot use methods in XAML.

Parameters

component
Type: System..::.Object
An object of the same type as the root element of the XAML file.
resourceLocator
Type: System..::.Uri
A Uri that maps to a relative XAML file.
Exceptions

ExceptionCondition
ArgumentNullException

component is null.

ArgumentNullException

resourceLocator is null.

ArgumentException

The OriginalString property of the resourceLocator Uri parameter is null.

ArgumentException

The resourceLocator is an absolute URI.

Exception

component is of a type that does not match the root element of the XAML file.

Remarks

The XAML file can be an application code file (configured as an Microsoft build engine (MSBuild) Page item) or an application data file (a resource file, content file, or site-of-origin file; see Windows Presentation Foundation Application Resource, Content, and Data Files).

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker