FragmentNavigationEventArgs Class
Provides data for the FragmentNavigation event.
Namespace: System.Windows.Navigation
Assembly: PresentationFramework (in PresentationFramework.dll)
The FragmentNavigationEventArgs type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Fragment | Gets the uniform resource identifier (URI) fragment. |
![]() | Handled | Gets or sets a value that indicates whether the fragment navigation has been handled. |
![]() | Navigator | The navigator that raised the FragmentNavigation event. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
T These event arguments contain information about the content fragment that is being navigated to, and are passed to handlers of the FragmentNavigation event, which is implemented by the following:
By default, a content fragment is content that is contained by a named UIElement, which is a UIElement whose Name attribute is set, e.g.:
<TextBlock Name="FragmentName">...</TextBlock>
You navigate to a XAML fragment by providing a URI with a suffix in the following format:
#FragmentName
The following shows an example of a URI that refers to a content fragment:
http://www.microsoft.com/targetpage.xaml#FragmentName
You can handle the FragmentNavigation event and use FragmentNavigationEventArgs to implement a custom content fragment handling implementation.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
