Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Navigation / FragmentNavigationEventArgs.cs / 1305600 / FragmentNavigationEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // // // History: // 02/01/05: [....] Created. // //--------------------------------------------------------------------------- using System; namespace System.Windows.Navigation { ////// FragmentNavigationEventArgs exposes the fragment being navigated to /// in an event fired from NavigationService to notify a listening client /// that a navigation to fragment is about to occur. This is used for table /// of contents navigations in fixed format documents. /// public class FragmentNavigationEventArgs : EventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors internal FragmentNavigationEventArgs(string fragment, object Navigator) { _fragment = fragment; _navigator = Navigator; } #endregion Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties ////// The fragment part of the URI that was passed to the Navigate() API which initiated this navigation. /// The fragment may be String.Empty to indicate a scroll to the top of the page. /// public string Fragment { get { return _fragment; } } ////// If this flag is not set by the called method then NavigationService will attempt to /// find an element with name equal to the fragment and bring it into view. /// public bool Handled { get { return _handled; } set { _handled = value; } } ////// The navigator that raised this event /// public object Navigator { get { return _navigator; } } #endregion Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private string _fragment; private bool _handled; object _navigator; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExtensibleClassFactory.cs
- TraceSource.cs
- __Filters.cs
- DataGridViewColumnEventArgs.cs
- NamedObject.cs
- OleDbReferenceCollection.cs
- XmlCustomFormatter.cs
- AssociativeAggregationOperator.cs
- DataGridViewCellConverter.cs
- StorageMappingItemCollection.cs
- EntityContainerAssociationSet.cs
- PngBitmapEncoder.cs
- Grant.cs
- OptimizedTemplateContentHelper.cs
- QueryContext.cs
- DragDropHelper.cs
- AssemblySettingAttributes.cs
- FactoryMaker.cs
- ResolvedKeyFrameEntry.cs
- UserControl.cs
- SqlClientFactory.cs
- ListViewInsertedEventArgs.cs
- DragEvent.cs
- IPPacketInformation.cs
- MimeReflector.cs
- SelectionWordBreaker.cs
- StructuredType.cs
- CommonDialog.cs
- TextEvent.cs
- ConfigurationValues.cs
- StorageConditionPropertyMapping.cs
- BindingExpressionBase.cs
- TrackingRecord.cs
- securitymgrsite.cs
- HttpPostedFile.cs
- ControlUtil.cs
- ConfigXmlElement.cs
- DbProviderManifest.cs
- Delegate.cs
- ContainerVisual.cs
- NativeMethods.cs
- WinFormsSpinner.cs
- NamespaceInfo.cs
- EndpointIdentity.cs
- WindowVisualStateTracker.cs
- DispatcherTimer.cs
- PageAction.cs
- BigInt.cs
- IISMapPath.cs
- RadialGradientBrush.cs
- _FtpControlStream.cs
- SortedDictionary.cs
- ProfileParameter.cs
- SelectionBorderGlyph.cs
- EntityTypeBase.cs
- MbpInfo.cs
- PagerSettings.cs
- ReturnValue.cs
- PolicyFactory.cs
- StringFreezingAttribute.cs
- ParallelTimeline.cs
- ListenerUnsafeNativeMethods.cs
- DataGridViewButtonCell.cs
- AuthenticationService.cs
- TreeNodeSelectionProcessor.cs
- SelectQueryOperator.cs
- DistributedTransactionPermission.cs
- XhtmlMobileTextWriter.cs
- VisualStyleRenderer.cs
- TemplateBindingExtension.cs
- EntityTypeEmitter.cs
- TextWriter.cs
- iisPickupDirectory.cs
- BindingMAnagerBase.cs
- QueryContinueDragEventArgs.cs
- CommonProperties.cs
- Bitmap.cs
- DataServiceSaveChangesEventArgs.cs
- DataBoundControlAdapter.cs
- XmlCompatibilityReader.cs
- TextServicesManager.cs
- GridItem.cs
- StreamWithDictionary.cs
- Sequence.cs
- UIElementHelper.cs
- ACL.cs
- CompilationLock.cs
- MultipartContentParser.cs
- TransactionBridgeSection.cs
- UITypeEditor.cs
- SelectedCellsChangedEventArgs.cs
- TextRenderer.cs
- SiteMapDataSourceView.cs
- SvcMapFileSerializer.cs
- PageCatalogPart.cs
- AgileSafeNativeMemoryHandle.cs
- PersianCalendar.cs
- CommonProperties.cs
- DataMisalignedException.cs
- BamlBinaryWriter.cs