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 / Documents / AdornerDecorator.cs / 1 / AdornerDecorator.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
//
// Description:
// AdornerDecorator class.
// See spec at: http://avalon/uis/Specs/AdornerLayer%20Spec.htm
//
// History:
// 1/29/2004 psarrett: Created
//
//---------------------------------------------------------------------------
using System;
using System.Collections;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Threading;
namespace System.Windows.Documents
{
///
/// This AdornerDecorator does not hookup its child in the logical tree. It's being
/// used by PopupRoot and FixedDocument.
///
internal class NonLogicalAdornerDecorator : AdornerDecorator
{
public override UIElement Child
{
get
{
return IntChild;
}
set
{
if (IntChild != value)
{
this.RemoveVisualChild(IntChild);
this.RemoveVisualChild(AdornerLayer);
IntChild = value;
if(value != null)
{
this.AddVisualChild(value);
this.AddVisualChild(AdornerLayer);
}
InvalidateMeasure();
}
}
}
}
///
/// Object which allows elements beneath it in the visual tree to be adorned.
/// AdornerDecorator has two children.
/// The first child is the parent of the rest of the visual tree below the AdornerDecorator.
/// The second child is the AdornerLayer on which adorners are rendered.
///
/// AdornerDecorator is intended to be used as part of an object's Style.
///
public class AdornerDecorator : Decorator
{
//-----------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
#region Constructors
///
/// Constructor
///
public AdornerDecorator() : base()
{
_adornerLayer = new AdornerLayer();
}
#endregion Constructors
//------------------------------------------------------
//
// Public Methods
//
//-----------------------------------------------------
//------------------------------------------------------
//
// Public Properties
//
//------------------------------------------------------
#region Public Properties
///
/// AdornerLayer on which adorners are rendered.
///
public AdornerLayer AdornerLayer
{
get
{
return _adornerLayer;
}
}
#endregion Public Properties
//-----------------------------------------------------
//
// Protected Methods
//
//------------------------------------------------------
#region Protected Methods
///
/// Measurement override. Implement your size-to-content logic here.
///
///
/// Sizing constraint.
///
protected override Size MeasureOverride(Size constraint)
{
Size desiredSize = base.MeasureOverride(constraint);
if (VisualTreeHelper.GetParent(_adornerLayer) != null)
{
// We don't really care about the size of the AdornerLayer-- we'll
// always just make the AdornerDecorator the full desiredSize. But
// we need to measure it anyway, to make sure Adorners render.
_adornerLayer.Measure(constraint);
}
return desiredSize;
}
///
/// Override for
///
/// The size reserved for this element by the parent
/// The actual ink area of the element, typically the same as finalSize
protected override Size ArrangeOverride(Size finalSize)
{
Size inkSize = base.ArrangeOverride(finalSize);
if (VisualTreeHelper.GetParent(_adornerLayer) != null)
{
_adornerLayer.Arrange(new Rect(finalSize));
}
return (inkSize);
}
///
/// Gets or sets the child of the AdornerDecorator.
///
public override UIElement Child
{
get
{
return base.Child;
}
set
{
Visual old = base.Child;
if (old == value)
{
return;
}
if (value == null)
{
base.Child = null;
RemoveVisualChild(_adornerLayer);
}
else
{
base.Child = value;
AddVisualChild(_adornerLayer);
}
}
}
///
/// Returns the Visual children count.
///
protected override int VisualChildrenCount
{
get
{
if (base.Child != null)
{
return 2; // One for the child and one for the adorner layer.
}
else
{
return 0;
}
}
}
///
/// Returns the child at the specified index.
///
protected override Visual GetVisualChild(int index)
{
if (base.Child == null)
{
throw new ArgumentOutOfRangeException("index", index, SR.Get(SRID.Visual_ArgumentOutOfRange));
}
else
{
switch (index)
{
case 0:
return base.Child;
case 1:
return _adornerLayer;
default:
throw new ArgumentOutOfRangeException("index", index, SR.Get(SRID.Visual_ArgumentOutOfRange));
}
}
}
#endregion Protected Methods
//-----------------------------------------------------
//
// Private Members
//
//-----------------------------------------------------
#region Private Members
//
// This property
// 1. Finds the correct initial size for the _effectiveValues store on the current DependencyObject
// 2. This is a performance optimization
//
internal override int EffectiveValuesInitialSize
{
get { return 6; }
}
readonly AdornerLayer _adornerLayer;
#endregion Private Members
}
}
// 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:
// AdornerDecorator class.
// See spec at: http://avalon/uis/Specs/AdornerLayer%20Spec.htm
//
// History:
// 1/29/2004 psarrett: Created
//
//---------------------------------------------------------------------------
using System;
using System.Collections;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Threading;
namespace System.Windows.Documents
{
///
/// This AdornerDecorator does not hookup its child in the logical tree. It's being
/// used by PopupRoot and FixedDocument.
///
internal class NonLogicalAdornerDecorator : AdornerDecorator
{
public override UIElement Child
{
get
{
return IntChild;
}
set
{
if (IntChild != value)
{
this.RemoveVisualChild(IntChild);
this.RemoveVisualChild(AdornerLayer);
IntChild = value;
if(value != null)
{
this.AddVisualChild(value);
this.AddVisualChild(AdornerLayer);
}
InvalidateMeasure();
}
}
}
}
///
/// Object which allows elements beneath it in the visual tree to be adorned.
/// AdornerDecorator has two children.
/// The first child is the parent of the rest of the visual tree below the AdornerDecorator.
/// The second child is the AdornerLayer on which adorners are rendered.
///
/// AdornerDecorator is intended to be used as part of an object's Style.
///
public class AdornerDecorator : Decorator
{
//-----------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
#region Constructors
///
/// Constructor
///
public AdornerDecorator() : base()
{
_adornerLayer = new AdornerLayer();
}
#endregion Constructors
//------------------------------------------------------
//
// Public Methods
//
//-----------------------------------------------------
//------------------------------------------------------
//
// Public Properties
//
//------------------------------------------------------
#region Public Properties
///
/// AdornerLayer on which adorners are rendered.
///
public AdornerLayer AdornerLayer
{
get
{
return _adornerLayer;
}
}
#endregion Public Properties
//-----------------------------------------------------
//
// Protected Methods
//
//------------------------------------------------------
#region Protected Methods
///
/// Measurement override. Implement your size-to-content logic here.
///
///
/// Sizing constraint.
///
protected override Size MeasureOverride(Size constraint)
{
Size desiredSize = base.MeasureOverride(constraint);
if (VisualTreeHelper.GetParent(_adornerLayer) != null)
{
// We don't really care about the size of the AdornerLayer-- we'll
// always just make the AdornerDecorator the full desiredSize. But
// we need to measure it anyway, to make sure Adorners render.
_adornerLayer.Measure(constraint);
}
return desiredSize;
}
///
/// Override for
///
/// The size reserved for this element by the parent
/// The actual ink area of the element, typically the same as finalSize
protected override Size ArrangeOverride(Size finalSize)
{
Size inkSize = base.ArrangeOverride(finalSize);
if (VisualTreeHelper.GetParent(_adornerLayer) != null)
{
_adornerLayer.Arrange(new Rect(finalSize));
}
return (inkSize);
}
///
/// Gets or sets the child of the AdornerDecorator.
///
public override UIElement Child
{
get
{
return base.Child;
}
set
{
Visual old = base.Child;
if (old == value)
{
return;
}
if (value == null)
{
base.Child = null;
RemoveVisualChild(_adornerLayer);
}
else
{
base.Child = value;
AddVisualChild(_adornerLayer);
}
}
}
///
/// Returns the Visual children count.
///
protected override int VisualChildrenCount
{
get
{
if (base.Child != null)
{
return 2; // One for the child and one for the adorner layer.
}
else
{
return 0;
}
}
}
///
/// Returns the child at the specified index.
///
protected override Visual GetVisualChild(int index)
{
if (base.Child == null)
{
throw new ArgumentOutOfRangeException("index", index, SR.Get(SRID.Visual_ArgumentOutOfRange));
}
else
{
switch (index)
{
case 0:
return base.Child;
case 1:
return _adornerLayer;
default:
throw new ArgumentOutOfRangeException("index", index, SR.Get(SRID.Visual_ArgumentOutOfRange));
}
}
}
#endregion Protected Methods
//-----------------------------------------------------
//
// Private Members
//
//-----------------------------------------------------
#region Private Members
//
// This property
// 1. Finds the correct initial size for the _effectiveValues store on the current DependencyObject
// 2. This is a performance optimization
//
internal override int EffectiveValuesInitialSize
{
get { return 6; }
}
readonly AdornerLayer _adornerLayer;
#endregion Private Members
}
}
// 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
- ReadOnlyCollectionBase.cs
- SqlMethodAttribute.cs
- Table.cs
- Comparer.cs
- BinaryOperationBinder.cs
- AssemblyAttributes.cs
- FixedSOMElement.cs
- Stylus.cs
- streamingZipPartStream.cs
- DataListCommandEventArgs.cs
- ObjectConverter.cs
- GeneralTransform3DCollection.cs
- AspCompat.cs
- Button.cs
- PropertyBuilder.cs
- DesignOnlyAttribute.cs
- Random.cs
- KeyValueConfigurationElement.cs
- DataSysAttribute.cs
- DataGridTextColumn.cs
- DiscoveryDocumentSearchPattern.cs
- srgsitem.cs
- RelationshipDetailsRow.cs
- Decoder.cs
- HuffCodec.cs
- DrawingGroup.cs
- FixUp.cs
- WsatAdminException.cs
- Resources.Designer.cs
- Attributes.cs
- ArrayWithOffset.cs
- WebPartRestoreVerb.cs
- XmlSchemaSimpleTypeUnion.cs
- AccessText.cs
- SpanIndex.cs
- MD5CryptoServiceProvider.cs
- SpecularMaterial.cs
- MenuTracker.cs
- LexicalChunk.cs
- RegexParser.cs
- Helper.cs
- PropertyGridCommands.cs
- _ContextAwareResult.cs
- XmlILOptimizerVisitor.cs
- DBBindings.cs
- KeyValuePair.cs
- SchemaMapping.cs
- SourceItem.cs
- SelectorAutomationPeer.cs
- DiffuseMaterial.cs
- WsiProfilesElement.cs
- ValuePattern.cs
- RankException.cs
- XmlTextReader.cs
- ControlCollection.cs
- ArgumentNullException.cs
- BaseComponentEditor.cs
- MetadataPropertyCollection.cs
- CodePrimitiveExpression.cs
- ListViewItemMouseHoverEvent.cs
- SpeechEvent.cs
- Transactions.cs
- UInt64Storage.cs
- ElementAtQueryOperator.cs
- ReferenceConverter.cs
- UpdatePanelTriggerCollection.cs
- SeparatorAutomationPeer.cs
- GeometryConverter.cs
- filewebresponse.cs
- BitmapEffectInput.cs
- SymbolEqualComparer.cs
- HtmlControl.cs
- XsdDateTime.cs
- Model3DGroup.cs
- ByteConverter.cs
- ApplicationFileParser.cs
- HtmlEmptyTagControlBuilder.cs
- TextTreeObjectNode.cs
- HttpCacheVaryByContentEncodings.cs
- DrawingContext.cs
- WebEventCodes.cs
- Command.cs
- Matrix3DConverter.cs
- XdrBuilder.cs
- WindowsAuthenticationModule.cs
- CLRBindingWorker.cs
- MenuAdapter.cs
- StyleTypedPropertyAttribute.cs
- AppDomainShutdownMonitor.cs
- ResourcesGenerator.cs
- SelectorItemAutomationPeer.cs
- DataTableTypeConverter.cs
- DesignerUtils.cs
- EditorPartCollection.cs
- XpsFilter.cs
- CapabilitiesRule.cs
- Int16Animation.cs
- FindRequestContext.cs
- MD5CryptoServiceProvider.cs
- ApplicationServiceHelper.cs