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 / Annotations / AnnotationComponentChooser.cs / 1 / AnnotationComponentChooser.cs
//---------------------------------------------------------------------------- //// Copyright(C) Microsoft Corporation. All rights reserved. // // // Description: // AnnotationComponentChooser // // History: // 04/01/2004 axelk: Created AnnotationComponentChooser.cs // // Copyright(C) 2002 by Microsoft Corporation. All rights reserved. //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Reflection; using System.Windows; using System.Windows.Controls; using MS.Internal.Annotations; using MS.Internal.Annotations.Component; namespace System.Windows.Annotations { ////// Instances of this class choose an IAnnotationComponent for a given AttachedAnnotation. /// The AnnotationService.Chooser DP is used to set such instances on the application tree. /// internal sealed class AnnotationComponentChooser { #region Public Statics /* * This member is not used in V1. Its only used to set no chooser but in V1 we don't * expose changing the chooser. We have one and only one chooser. * ////// Singleton to set no chooser to be used. /// public static readonly AnnotationComponentChooser None = new NoAnnotationComponentChooser(); * */ #endregion Public Statics #region Constructors ////// Return a default AnnotationComponentChooser /// public AnnotationComponentChooser() { } #endregion Constructors #region Public Methods ////// Choose an IAnnotationComponent for a given IAttachedAnnotation. Implementation in AnnotationComponentChooser knows /// about all out-of-box IAnnotationComponents. The default mapping will be stated here later. /// Subclasses can overwrite this method to return application specific mapping. /// Note: In future release this method should be made virtual. /// /// The IAttachedAnnotation that needs an IAnnotationComponent ///public IAnnotationComponent ChooseAnnotationComponent(IAttachedAnnotation attachedAnnotation) { if (attachedAnnotation == null) throw new ArgumentNullException("attachedAnnotation"); IAnnotationComponent ac = null; // Text StickyNote if (attachedAnnotation.Annotation.AnnotationType == StickyNoteControl.TextSchemaName) { ac = new StickyNoteControl(StickyNoteType.Text) as IAnnotationComponent; } // Ink StickyNote else if (attachedAnnotation.Annotation.AnnotationType == StickyNoteControl.InkSchemaName) { ac = new StickyNoteControl(StickyNoteType.Ink) as IAnnotationComponent; } // Highlight else if (attachedAnnotation.Annotation.AnnotationType == HighlightComponent.TypeName) { ac = new HighlightComponent() as IAnnotationComponent; } return ac; } #endregion Public Methods #region Private Classes /* * This class won't be used in V1. We have one and only one chooser. There's no way to change it. * /// /// There is only one instance of this class (in AnnotationComponentChooser.None), it always returns null for any given IAttachedAnnotation. /// It does not throw an exception for a null attached annotation. /// It indicates that no choosing should be performed in the subtree that the instance is attached to. /// private class NoAnnotationComponentChooser : AnnotationComponentChooser { public override IAnnotationComponent ChooseAnnotationComponent(IAttachedAnnotation attachedAnnotation) { return null; } } * */ #endregion Private Classes } } // 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: // AnnotationComponentChooser // // History: // 04/01/2004 axelk: Created AnnotationComponentChooser.cs // // Copyright(C) 2002 by Microsoft Corporation. All rights reserved. //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Reflection; using System.Windows; using System.Windows.Controls; using MS.Internal.Annotations; using MS.Internal.Annotations.Component; namespace System.Windows.Annotations { ////// Instances of this class choose an IAnnotationComponent for a given AttachedAnnotation. /// The AnnotationService.Chooser DP is used to set such instances on the application tree. /// internal sealed class AnnotationComponentChooser { #region Public Statics /* * This member is not used in V1. Its only used to set no chooser but in V1 we don't * expose changing the chooser. We have one and only one chooser. * ////// Singleton to set no chooser to be used. /// public static readonly AnnotationComponentChooser None = new NoAnnotationComponentChooser(); * */ #endregion Public Statics #region Constructors ////// Return a default AnnotationComponentChooser /// public AnnotationComponentChooser() { } #endregion Constructors #region Public Methods ////// Choose an IAnnotationComponent for a given IAttachedAnnotation. Implementation in AnnotationComponentChooser knows /// about all out-of-box IAnnotationComponents. The default mapping will be stated here later. /// Subclasses can overwrite this method to return application specific mapping. /// Note: In future release this method should be made virtual. /// /// The IAttachedAnnotation that needs an IAnnotationComponent ///public IAnnotationComponent ChooseAnnotationComponent(IAttachedAnnotation attachedAnnotation) { if (attachedAnnotation == null) throw new ArgumentNullException("attachedAnnotation"); IAnnotationComponent ac = null; // Text StickyNote if (attachedAnnotation.Annotation.AnnotationType == StickyNoteControl.TextSchemaName) { ac = new StickyNoteControl(StickyNoteType.Text) as IAnnotationComponent; } // Ink StickyNote else if (attachedAnnotation.Annotation.AnnotationType == StickyNoteControl.InkSchemaName) { ac = new StickyNoteControl(StickyNoteType.Ink) as IAnnotationComponent; } // Highlight else if (attachedAnnotation.Annotation.AnnotationType == HighlightComponent.TypeName) { ac = new HighlightComponent() as IAnnotationComponent; } return ac; } #endregion Public Methods #region Private Classes /* * This class won't be used in V1. We have one and only one chooser. There's no way to change it. * /// /// There is only one instance of this class (in AnnotationComponentChooser.None), it always returns null for any given IAttachedAnnotation. /// It does not throw an exception for a null attached annotation. /// It indicates that no choosing should be performed in the subtree that the instance is attached to. /// private class NoAnnotationComponentChooser : AnnotationComponentChooser { public override IAnnotationComponent ChooseAnnotationComponent(IAttachedAnnotation attachedAnnotation) { return null; } } * */ #endregion Private Classes } } // 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
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- InsufficientMemoryException.cs
- HitTestParameters.cs
- SmiRequestExecutor.cs
- FileSystemWatcher.cs
- ContentPlaceHolder.cs
- GeometryHitTestResult.cs
- StorageInfo.cs
- SHA384Managed.cs
- Triangle.cs
- NavigationProperty.cs
- BindingMemberInfo.cs
- SchemaCompiler.cs
- Figure.cs
- DataGridViewRowHeaderCell.cs
- ScrollBar.cs
- TCPClient.cs
- ResourceAssociationType.cs
- PresentationAppDomainManager.cs
- FrameworkContentElementAutomationPeer.cs
- EditorZone.cs
- WebPartEditorCancelVerb.cs
- RenameRuleObjectDialog.Designer.cs
- VectorValueSerializer.cs
- FlowDocumentFormatter.cs
- QueryOutputWriter.cs
- PageContent.cs
- ListParagraph.cs
- FileEnumerator.cs
- ColumnWidthChangedEvent.cs
- OleDbMetaDataFactory.cs
- HtmlTableRow.cs
- MobileContainerDesigner.cs
- DescendentsWalker.cs
- HostSecurityManager.cs
- RoleService.cs
- SslStream.cs
- SQLBytesStorage.cs
- ProxyFragment.cs
- WSFederationHttpSecurity.cs
- ToolStripSystemRenderer.cs
- CompletionBookmark.cs
- TaskCanceledException.cs
- NavigationService.cs
- DecoderNLS.cs
- ReflectionUtil.cs
- PageEventArgs.cs
- BindingWorker.cs
- PageCatalogPart.cs
- EntityDataSourceContainerNameItem.cs
- BooleanToVisibilityConverter.cs
- _NegotiateClient.cs
- PathFigureCollectionConverter.cs
- SizeKeyFrameCollection.cs
- EntityContainer.cs
- ContextMenu.cs
- UIHelper.cs
- TemplateAction.cs
- CommandDevice.cs
- IpcManager.cs
- ProxyHelper.cs
- OAVariantLib.cs
- DataSourceProvider.cs
- QueryableDataSourceView.cs
- ColumnHeader.cs
- Int64Animation.cs
- MarkupExtensionParser.cs
- BamlWriter.cs
- ResourceExpressionBuilder.cs
- BufferedStream2.cs
- IPEndPointCollection.cs
- Activator.cs
- InputManager.cs
- Visitors.cs
- DecoderExceptionFallback.cs
- Matrix3D.cs
- SoundPlayer.cs
- keycontainerpermission.cs
- ArrangedElementCollection.cs
- StorageModelBuildProvider.cs
- TimerExtension.cs
- DuplicateContext.cs
- IntSecurity.cs
- AlternateViewCollection.cs
- BindingContext.cs
- WebHeaderCollection.cs
- XmlTextReader.cs
- ComplexPropertyEntry.cs
- PasswordRecoveryDesigner.cs
- ConstructorBuilder.cs
- PointF.cs
- Cursor.cs
- PathTooLongException.cs
- Group.cs
- DBNull.cs
- DataListComponentEditor.cs
- Array.cs
- EntityDataSourceWrapper.cs
- HostVisual.cs
- SpecialTypeDataContract.cs