Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media / ContainerVisual.cs / 1 / ContainerVisual.cs
//------------------------------------------------------------------------------
// Microsoft Avalon
// Copyright (c) Microsoft Corporation, 2001
//
// File: ContainerVisual.cs
//
// History: GSchneid: 05/28/2003
// Created it.
//-----------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.Windows.Threading;
using System.Windows.Media;
using System.Windows.Media.Effects;
using System.Diagnostics;
using System.Collections;
using MS.Internal;
using System.Resources;
using System.Runtime.InteropServices;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
namespace System.Windows.Media
{
///
/// A ContainerVisual is a Container for other Visuals.
///
public class ContainerVisual : Visual
{
///
/// Ctor ContainerVisual.
///
public ContainerVisual()
{
_children = new VisualCollection(this);
}
// -----------------------------------------------------------------------------------------
// Publicly re-exposed VisualTreeHelper interfaces.
// -----------------------------------------------------------------------------------------
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public VisualCollection Children
{
get
{
VerifyAPIReadOnly();
return _children;
}
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public DependencyObject Parent
{
get { return base.VisualParent; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public Geometry Clip
{
get { return base.VisualClip; }
set { base.VisualClip = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public double Opacity
{
get { return base.VisualOpacity; }
set { base.VisualOpacity = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public Brush OpacityMask
{
get { return base.VisualOpacityMask; }
set { base.VisualOpacityMask = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
[Obsolete(MS.Internal.Media.VisualTreeUtils.BitmapEffectObsoleteMessage)]
public BitmapEffect BitmapEffect
{
get { return base.VisualBitmapEffect; }
set { base.VisualBitmapEffect = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
[Obsolete(MS.Internal.Media.VisualTreeUtils.BitmapEffectObsoleteMessage)]
public BitmapEffectInput BitmapEffectInput
{
get { return base.VisualBitmapEffectInput; }
set { base.VisualBitmapEffectInput = value; }
}
///
/// Gets or sets X- (vertical) guidelines on this Visual.
///
[DefaultValue(null)]
public DoubleCollection XSnappingGuidelines
{
get { return base.VisualXSnappingGuidelines; }
set { base.VisualXSnappingGuidelines = value; }
}
///
/// Gets or sets Y- (vertical) guidelines on this Visual.
///
[DefaultValue(null)]
public DoubleCollection YSnappingGuidelines
{
get { return base.VisualYSnappingGuidelines; }
set { base.VisualYSnappingGuidelines = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
new public HitTestResult HitTest(Point point)
{
return base.HitTest(point);
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
new public void HitTest(HitTestFilterCallback filterCallback, HitTestResultCallback resultCallback, HitTestParameters hitTestParameters)
{
base.HitTest(filterCallback, resultCallback, hitTestParameters);
}
///
/// VisualContentBounds returns the bounding box for the contents of this Visual.
///
public Rect ContentBounds
{
get
{
return base.VisualContentBounds;
}
}
///
/// Gets or sets the Transform property.
///
public Transform Transform
{
get
{
return base.VisualTransform;
}
set
{
base.VisualTransform = value;
}
}
///
/// Gets or sets the Offset property.
///
public Vector Offset
{
get
{
return base.VisualOffset;
}
set
{
base.VisualOffset = value;
}
}
///
/// DescendantBounds returns the union of all of the content bounding
/// boxes for all of the descendants of the current visual, but not including
/// the contents of the current visual.
///
public Rect DescendantBounds
{
get
{
return base.VisualDescendantBounds;
}
}
// ------------------------------------------------------------------------------------------
// Protected methods
// -----------------------------------------------------------------------------------------
///
/// Derived class must implement to support Visual children. The method must return
/// the child at the specified index. Index must be between 0 and GetVisualChildrenCount-1.
///
/// By default a Visual does not have any children.
///
/// Remark:
/// During this virtual call it is not valid to modify the Visual tree.
///
protected sealed override Visual GetVisualChild(int index)
{
//VisualCollection does the range check for index
return _children[index];
}
///
/// Derived classes override this property to enable the Visual code to enumerate
/// the Visual children. Derived classes need to return the number of children
/// from this method.
///
/// By default a Visual does not have any children.
///
/// Remark: During this virtual method the Visual tree must not be modified.
///
protected sealed override int VisualChildrenCount
{
get
{
return _children.Count;
}
}
// ------------------------------------------------------------------------------------------
// Private fields
// ------------------------------------------------------------------------------------------
private readonly VisualCollection _children;
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
// Microsoft Avalon
// Copyright (c) Microsoft Corporation, 2001
//
// File: ContainerVisual.cs
//
// History: GSchneid: 05/28/2003
// Created it.
//-----------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.Windows.Threading;
using System.Windows.Media;
using System.Windows.Media.Effects;
using System.Diagnostics;
using System.Collections;
using MS.Internal;
using System.Resources;
using System.Runtime.InteropServices;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
namespace System.Windows.Media
{
///
/// A ContainerVisual is a Container for other Visuals.
///
public class ContainerVisual : Visual
{
///
/// Ctor ContainerVisual.
///
public ContainerVisual()
{
_children = new VisualCollection(this);
}
// -----------------------------------------------------------------------------------------
// Publicly re-exposed VisualTreeHelper interfaces.
// -----------------------------------------------------------------------------------------
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public VisualCollection Children
{
get
{
VerifyAPIReadOnly();
return _children;
}
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public DependencyObject Parent
{
get { return base.VisualParent; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public Geometry Clip
{
get { return base.VisualClip; }
set { base.VisualClip = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public double Opacity
{
get { return base.VisualOpacity; }
set { base.VisualOpacity = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
public Brush OpacityMask
{
get { return base.VisualOpacityMask; }
set { base.VisualOpacityMask = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
[Obsolete(MS.Internal.Media.VisualTreeUtils.BitmapEffectObsoleteMessage)]
public BitmapEffect BitmapEffect
{
get { return base.VisualBitmapEffect; }
set { base.VisualBitmapEffect = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
[Obsolete(MS.Internal.Media.VisualTreeUtils.BitmapEffectObsoleteMessage)]
public BitmapEffectInput BitmapEffectInput
{
get { return base.VisualBitmapEffectInput; }
set { base.VisualBitmapEffectInput = value; }
}
///
/// Gets or sets X- (vertical) guidelines on this Visual.
///
[DefaultValue(null)]
public DoubleCollection XSnappingGuidelines
{
get { return base.VisualXSnappingGuidelines; }
set { base.VisualXSnappingGuidelines = value; }
}
///
/// Gets or sets Y- (vertical) guidelines on this Visual.
///
[DefaultValue(null)]
public DoubleCollection YSnappingGuidelines
{
get { return base.VisualYSnappingGuidelines; }
set { base.VisualYSnappingGuidelines = value; }
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
new public HitTestResult HitTest(Point point)
{
return base.HitTest(point);
}
///
/// Re-exposes the Visual base class's corresponding VisualTreeHelper implementation as public method.
///
new public void HitTest(HitTestFilterCallback filterCallback, HitTestResultCallback resultCallback, HitTestParameters hitTestParameters)
{
base.HitTest(filterCallback, resultCallback, hitTestParameters);
}
///
/// VisualContentBounds returns the bounding box for the contents of this Visual.
///
public Rect ContentBounds
{
get
{
return base.VisualContentBounds;
}
}
///
/// Gets or sets the Transform property.
///
public Transform Transform
{
get
{
return base.VisualTransform;
}
set
{
base.VisualTransform = value;
}
}
///
/// Gets or sets the Offset property.
///
public Vector Offset
{
get
{
return base.VisualOffset;
}
set
{
base.VisualOffset = value;
}
}
///
/// DescendantBounds returns the union of all of the content bounding
/// boxes for all of the descendants of the current visual, but not including
/// the contents of the current visual.
///
public Rect DescendantBounds
{
get
{
return base.VisualDescendantBounds;
}
}
// ------------------------------------------------------------------------------------------
// Protected methods
// -----------------------------------------------------------------------------------------
///
/// Derived class must implement to support Visual children. The method must return
/// the child at the specified index. Index must be between 0 and GetVisualChildrenCount-1.
///
/// By default a Visual does not have any children.
///
/// Remark:
/// During this virtual call it is not valid to modify the Visual tree.
///
protected sealed override Visual GetVisualChild(int index)
{
//VisualCollection does the range check for index
return _children[index];
}
///
/// Derived classes override this property to enable the Visual code to enumerate
/// the Visual children. Derived classes need to return the number of children
/// from this method.
///
/// By default a Visual does not have any children.
///
/// Remark: During this virtual method the Visual tree must not be modified.
///
protected sealed override int VisualChildrenCount
{
get
{
return _children.Count;
}
}
// ------------------------------------------------------------------------------------------
// Private fields
// ------------------------------------------------------------------------------------------
private readonly VisualCollection _children;
}
}
// 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
- Geometry.cs
- Logging.cs
- FileDialogCustomPlace.cs
- X509Extension.cs
- ConfigDefinitionUpdates.cs
- CompressStream.cs
- BinaryHeap.cs
- UnsignedPublishLicense.cs
- KeyEventArgs.cs
- BitmapFrameEncode.cs
- AnimationException.cs
- InvalidOperationException.cs
- Point3DConverter.cs
- SlipBehavior.cs
- InfoCardServiceInstallComponent.cs
- Aggregates.cs
- FrameworkContentElementAutomationPeer.cs
- CompModSwitches.cs
- Matrix3DValueSerializer.cs
- ProcessProtocolHandler.cs
- AxisAngleRotation3D.cs
- VisualStyleElement.cs
- Compiler.cs
- VersionedStreamOwner.cs
- TaskHelper.cs
- ControlCollection.cs
- TypeInfo.cs
- ArcSegment.cs
- WebProxyScriptElement.cs
- LockRenewalTask.cs
- Attachment.cs
- Light.cs
- DataTableCollection.cs
- ConnectionPoolManager.cs
- ReadOnlyObservableCollection.cs
- WindowsHyperlink.cs
- SqlClientWrapperSmiStreamChars.cs
- SimpleWorkerRequest.cs
- XamlParser.cs
- ExtentCqlBlock.cs
- CreateUserWizardAutoFormat.cs
- Message.cs
- ParsedAttributeCollection.cs
- GridViewEditEventArgs.cs
- ProcessHostServerConfig.cs
- DecimalFormatter.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- ReaderWriterLockWrapper.cs
- FaultImportOptions.cs
- DefaultObjectMappingItemCollection.cs
- VirtualDirectoryMapping.cs
- BaseWebProxyFinder.cs
- DefaultMemberAttribute.cs
- PaperSource.cs
- GroupItemAutomationPeer.cs
- Clock.cs
- GroupItemAutomationPeer.cs
- IPPacketInformation.cs
- MarshalByValueComponent.cs
- ImageIndexConverter.cs
- objectresult_tresulttype.cs
- BamlMapTable.cs
- EasingFunctionBase.cs
- SqlRowUpdatedEvent.cs
- Listbox.cs
- LambdaCompiler.Logical.cs
- XmlNodeReader.cs
- UnicodeEncoding.cs
- DataBinder.cs
- UpdateManifestForBrowserApplication.cs
- GatewayDefinition.cs
- ValidationSummary.cs
- RichTextBox.cs
- OleDbPropertySetGuid.cs
- TableTextElementCollectionInternal.cs
- RequestCachingSection.cs
- ForAllOperator.cs
- SafeLibraryHandle.cs
- PathNode.cs
- CollectionViewGroupInternal.cs
- DynamicMethod.cs
- FormClosedEvent.cs
- StorageSetMapping.cs
- MonikerSyntaxException.cs
- ManagedWndProcTracker.cs
- Subset.cs
- TPLETWProvider.cs
- PartialCachingAttribute.cs
- DataGridViewComboBoxEditingControl.cs
- DynamicValueConverter.cs
- XamlPoint3DCollectionSerializer.cs
- WebBaseEventKeyComparer.cs
- MatrixCamera.cs
- GACMembershipCondition.cs
- EventProviderWriter.cs
- WorkflowDesignerMessageFilter.cs
- CodeArgumentReferenceExpression.cs
- ImageDrawing.cs
- SingleTagSectionHandler.cs
- TreeNodeMouseHoverEvent.cs