Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Navigation / FragmentNavigationEventArgs.cs / 1 / 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
- SetStoryboardSpeedRatio.cs
- CollectionChangeEventArgs.cs
- RegisteredDisposeScript.cs
- ChannelEndpointElement.cs
- DispatchRuntime.cs
- XsdDuration.cs
- DependencyObjectPropertyDescriptor.cs
- TextBoxBase.cs
- Range.cs
- TextServicesDisplayAttributePropertyRanges.cs
- MouseDevice.cs
- FileLevelControlBuilderAttribute.cs
- XmlSchemaInfo.cs
- AssertFilter.cs
- SevenBitStream.cs
- EntityDescriptor.cs
- LayoutTable.cs
- SharedPersonalizationStateInfo.cs
- CommandPlan.cs
- DefaultParameterValueAttribute.cs
- WithStatement.cs
- BamlRecordHelper.cs
- WebPartDeleteVerb.cs
- SchemaNotation.cs
- Attributes.cs
- PerSessionInstanceContextProvider.cs
- Rotation3D.cs
- httpserverutility.cs
- RSAPKCS1SignatureFormatter.cs
- GroupDescription.cs
- CircleHotSpot.cs
- FileSecurity.cs
- AxWrapperGen.cs
- MissingMemberException.cs
- MemberAccessException.cs
- DataGridViewCellValidatingEventArgs.cs
- FormsAuthenticationModule.cs
- ValueQuery.cs
- QilDataSource.cs
- QuotedPrintableStream.cs
- XmlStreamNodeWriter.cs
- WaitHandleCannotBeOpenedException.cs
- RadialGradientBrush.cs
- SessionEndedEventArgs.cs
- ImageCodecInfoPrivate.cs
- CodeMethodInvokeExpression.cs
- ExpressionConverter.cs
- Or.cs
- AssemblyContextControlItem.cs
- AsyncStreamReader.cs
- SiteMembershipCondition.cs
- PointAnimationClockResource.cs
- ExtractedStateEntry.cs
- WebPartCloseVerb.cs
- XmlSchemaImport.cs
- AtomPub10CategoriesDocumentFormatter.cs
- TableAdapterManagerGenerator.cs
- ActivityBuilder.cs
- SqlCommandSet.cs
- DoubleLink.cs
- ProvidersHelper.cs
- HttpBufferlessInputStream.cs
- SqlDataSource.cs
- TraceHandlerErrorFormatter.cs
- ContextStaticAttribute.cs
- MailMessage.cs
- PrintController.cs
- WebPartZone.cs
- SelectionRange.cs
- MailSettingsSection.cs
- MaskedTextProvider.cs
- ReceiveSecurityHeader.cs
- XPathBinder.cs
- UndoUnit.cs
- ConfigurationValue.cs
- SimpleWebHandlerParser.cs
- FormView.cs
- Internal.cs
- HeaderedContentControl.cs
- ValidationEventArgs.cs
- BufferModesCollection.cs
- EntityContainerAssociationSet.cs
- RegexMatchCollection.cs
- ToolStripSeparator.cs
- FixUp.cs
- NetworkCredential.cs
- MultiSelectRootGridEntry.cs
- DefaultTraceListener.cs
- Char.cs
- DateTimeFormatInfoScanner.cs
- TargetControlTypeCache.cs
- Encoder.cs
- StringExpressionSet.cs
- XmlCollation.cs
- _OSSOCK.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- HexParser.cs
- TagNameToTypeMapper.cs
- SystemFonts.cs
- MaterialCollection.cs