Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- CLSCompliantAttribute.cs
- GroupPartitionExpr.cs
- XmlAttributeAttribute.cs
- BamlRecordHelper.cs
- SByteConverter.cs
- CursorInteropHelper.cs
- iisPickupDirectory.cs
- MetaModel.cs
- OletxDependentTransaction.cs
- _AutoWebProxyScriptHelper.cs
- WebAdminConfigurationHelper.cs
- TypeToArgumentTypeConverter.cs
- ContextMenu.cs
- ChtmlTextWriter.cs
- BuildResult.cs
- HtmlGenericControl.cs
- TraceSection.cs
- DetectEofStream.cs
- CompilationUtil.cs
- _TransmitFileOverlappedAsyncResult.cs
- AttachedAnnotation.cs
- OleDbFactory.cs
- LineGeometry.cs
- Latin1Encoding.cs
- EditBehavior.cs
- StateMachineExecutionState.cs
- ThreadAttributes.cs
- LiteralControl.cs
- StructuralCache.cs
- Documentation.cs
- MemoryFailPoint.cs
- SymDocumentType.cs
- TimeSpanConverter.cs
- Literal.cs
- OletxCommittableTransaction.cs
- DataListItemEventArgs.cs
- StickyNote.cs
- ScriptManagerProxy.cs
- Effect.cs
- TextInfo.cs
- _SslStream.cs
- HttpRawResponse.cs
- DomainUpDown.cs
- BasicExpressionVisitor.cs
- LocatorGroup.cs
- ComboBoxRenderer.cs
- TextServicesCompartmentContext.cs
- SystemIPInterfaceProperties.cs
- _IPv6Address.cs
- ComContractElementCollection.cs
- PackageRelationshipSelector.cs
- MatchAllMessageFilter.cs
- SemaphoreFullException.cs
- MenuCommandService.cs
- WhitespaceRule.cs
- EdmComplexTypeAttribute.cs
- SortFieldComparer.cs
- StatusBarItemAutomationPeer.cs
- PaginationProgressEventArgs.cs
- TabletCollection.cs
- ToolStripDropDownButton.cs
- SecurityManager.cs
- FormsAuthentication.cs
- ServiceBehaviorAttribute.cs
- XmlDocumentFragment.cs
- EncoderParameter.cs
- OleDbInfoMessageEvent.cs
- AutomationElementIdentifiers.cs
- ThicknessConverter.cs
- CategoryGridEntry.cs
- CoreSwitches.cs
- WindowsEditBoxRange.cs
- Point3DAnimationBase.cs
- PDBReader.cs
- SizeConverter.cs
- AsyncWaitHandle.cs
- XmlTextWriter.cs
- Base64Decoder.cs
- SpecularMaterial.cs
- PrintDialogDesigner.cs
- UpdateExpressionVisitor.cs
- versioninfo.cs
- MemberProjectionIndex.cs
- ShapingEngine.cs
- WebPartVerbCollection.cs
- TextBoxLine.cs
- WindowsImpersonationContext.cs
- DoubleAnimationUsingPath.cs
- Stack.cs
- EntryPointNotFoundException.cs
- Bold.cs
- WaitHandle.cs
- FilteredAttributeCollection.cs
- SamlSubjectStatement.cs
- ConnectionManagementElementCollection.cs
- PropertyInfo.cs
- SimpleMailWebEventProvider.cs
- CategoryAttribute.cs
- LineServicesCallbacks.cs
- ParentUndoUnit.cs