Frame.Source Property

Definition

Gets or sets the uniform resource identifier (URI) of the current content, or the URI of new content that is currently being navigated to.

public:
 property Uri ^ Source { Uri ^ get(); void set(Uri ^ value); };
[System.ComponentModel.Bindable(true)]
public Uri Source { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Source : Uri with get, set
Public Property Source As Uri

Property Value

Uri

A Uri that contains the URI for the current content, or the content that is currently being navigated to.

Attributes

Examples

The following example shows how to navigate to a uniform resource identifier (URI) by setting the Source property.

// Navigate to URI using the Source property
this.Source = new Uri("HomePage.xaml", UriKind.Relative);
' Navigate to URI using the Source property
Me.Source = New Uri("HomePage.xaml", UriKind.Relative)

Remarks

See NavigationService.Source.

Note

Uniform resource identifiers (URIs) can be either relative or absolute. For more information, see Pack URIs in WPF.

Dependency Property Information

Identifier field SourceProperty
Metadata properties set to true Journal

Applies to