Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Navigation / FragmentNavigationEventArgs.cs / 1 / FragmentNavigationEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // // // History: // 02/01/05: erichar 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. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // // // History: // 02/01/05: erichar 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
- ClientTargetSection.cs
- DataGridViewUtilities.cs
- WebEventCodes.cs
- SingleConverter.cs
- UserMapPath.cs
- TripleDESCryptoServiceProvider.cs
- VerticalAlignConverter.cs
- DropDownList.cs
- XmlObjectSerializerWriteContextComplex.cs
- XmlComment.cs
- TraceUtility.cs
- CollectionContainer.cs
- PathData.cs
- InitializingNewItemEventArgs.cs
- SqlCacheDependency.cs
- ColumnHeaderConverter.cs
- ServerTooBusyException.cs
- LightweightCodeGenerator.cs
- UnsafeNativeMethods.cs
- basevalidator.cs
- OdbcParameterCollection.cs
- VectorKeyFrameCollection.cs
- FormViewUpdateEventArgs.cs
- RoutedEventHandlerInfo.cs
- ImageField.cs
- MaterialCollection.cs
- TextRangeEdit.cs
- StreamUpgradeProvider.cs
- SmtpClient.cs
- CalendarDay.cs
- StatusBar.cs
- PeerNearMe.cs
- PassportAuthenticationEventArgs.cs
- AssemblyCollection.cs
- Int64Animation.cs
- RenderTargetBitmap.cs
- Light.cs
- DataGridViewCellParsingEventArgs.cs
- TextEndOfSegment.cs
- WebPartUserCapability.cs
- __TransparentProxy.cs
- SqlUtils.cs
- DataSourceHelper.cs
- ReverseQueryOperator.cs
- TextEffectCollection.cs
- HttpListenerException.cs
- LocatorPartList.cs
- GridViewAutomationPeer.cs
- ListView.cs
- securitycriticaldataClass.cs
- DesignUtil.cs
- WizardForm.cs
- ActivityCodeDomSerializer.cs
- InvalidTimeZoneException.cs
- IPHostEntry.cs
- GeneratedView.cs
- ClrProviderManifest.cs
- ExecutedRoutedEventArgs.cs
- dataprotectionpermissionattribute.cs
- Manipulation.cs
- ByteAnimationUsingKeyFrames.cs
- ScriptManager.cs
- XmlSchemaNotation.cs
- DataTableReader.cs
- StringSource.cs
- ReaderWriterLockWrapper.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- commandenforcer.cs
- AlignmentXValidation.cs
- SoapAttributeOverrides.cs
- ClickablePoint.cs
- ListView.cs
- ColumnMapTranslator.cs
- StylusTip.cs
- RegexCompiler.cs
- ContentType.cs
- UInt64.cs
- InitializationEventAttribute.cs
- FixedPageAutomationPeer.cs
- DirectoryObjectSecurity.cs
- DateTimeFormat.cs
- CodeDefaultValueExpression.cs
- ZipFileInfoCollection.cs
- PeerCollaborationPermission.cs
- PauseStoryboard.cs
- OciHandle.cs
- TdsParserSafeHandles.cs
- AppDomainManager.cs
- XmlBinaryReader.cs
- OpenFileDialog.cs
- WinEventQueueItem.cs
- AttributeData.cs
- DrawingGroup.cs
- CodeSubDirectoriesCollection.cs
- DataGridView.cs
- ConnectionStringsExpressionBuilder.cs
- CriticalFinalizerObject.cs
- InternalConfigSettingsFactory.cs
- TransformValueSerializer.cs
- PerformanceCounterPermissionAttribute.cs