Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / Behavior / BodyGlyph.cs / 1 / BodyGlyph.cs
namespace System.Windows.Forms.Design.Behavior { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Design; using System.Diagnostics; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms.Design; ////// /// This Glyph is placed on every control sized to the exact bounds of /// the control. /// public class ControlBodyGlyph : ComponentGlyph { private Rectangle bounds; //bounds of the related control private Cursor hitTestCursor; //cursor used to hit test private IComponent component; ////// /// Standard Constructor. /// public ControlBodyGlyph(Rectangle bounds, Cursor cursor, IComponent relatedComponent, ControlDesigner designer) : base(relatedComponent, new ControlDesigner.TransparentBehavior(designer)) { this.bounds = bounds; this.hitTestCursor = cursor; this.component = relatedComponent; } public ControlBodyGlyph(Rectangle bounds, Cursor cursor, IComponent relatedComponent, Behavior behavior) : base(relatedComponent, behavior) { this.bounds = bounds; this.hitTestCursor = cursor; this.component = relatedComponent; } ////// /// Simple hit test rule: if the point is contained within the bounds /// AND the component is Visible (controls on some tab pages may /// not be, for ex) then it is a positive hit test. /// public override Cursor GetHitTest(Point p) { bool isVisible = (component is Control) ? ((Control)component).Visible : true; /*non-controls are always visible here*/ if (isVisible && bounds.Contains(p)) { return hitTestCursor; } return null; } ////// /// The bounds of this glyph. /// public override Rectangle Bounds { get { return bounds; } } } } // 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
- ChtmlFormAdapter.cs
- IntegerValidatorAttribute.cs
- SchemaCollectionCompiler.cs
- Rectangle.cs
- Configuration.cs
- ExpandoObject.cs
- NativeObjectSecurity.cs
- GridView.cs
- Atom10FormatterFactory.cs
- SRef.cs
- ResourceProviderFactory.cs
- XmlDsigSep2000.cs
- CombinedGeometry.cs
- GestureRecognitionResult.cs
- XmlSchemaAnnotated.cs
- PreProcessor.cs
- IApplicationTrustManager.cs
- SqlRowUpdatingEvent.cs
- DataGridRowDetailsEventArgs.cs
- DBSqlParserColumn.cs
- SpecialFolderEnumConverter.cs
- TaskHelper.cs
- _LazyAsyncResult.cs
- MimeTypeAttribute.cs
- MtomMessageEncodingBindingElement.cs
- WorkItem.cs
- SplitContainerDesigner.cs
- UriScheme.cs
- DispatcherOperation.cs
- WebBrowserNavigatedEventHandler.cs
- Attributes.cs
- CustomAttributeBuilder.cs
- SmiContext.cs
- ipaddressinformationcollection.cs
- NetworkStream.cs
- CellConstant.cs
- GroupBoxRenderer.cs
- ColumnHeaderConverter.cs
- SourceItem.cs
- TypeConverterMarkupExtension.cs
- RunWorkerCompletedEventArgs.cs
- Point.cs
- ExpressionParser.cs
- TextureBrush.cs
- PersistNameAttribute.cs
- ClientConfigPaths.cs
- SrgsSemanticInterpretationTag.cs
- WebPartTracker.cs
- FormatterServices.cs
- StringSorter.cs
- XsltArgumentList.cs
- ReferentialConstraint.cs
- StateBag.cs
- ButtonAutomationPeer.cs
- FragmentQuery.cs
- COM2PropertyBuilderUITypeEditor.cs
- MimeObjectFactory.cs
- InheritablePropertyChangeInfo.cs
- ClipboardData.cs
- PrePostDescendentsWalker.cs
- RectIndependentAnimationStorage.cs
- ButtonBaseAdapter.cs
- Unit.cs
- Transform3DCollection.cs
- EmbeddedMailObjectsCollection.cs
- Block.cs
- CustomErrorsSectionWrapper.cs
- WindowsImpersonationContext.cs
- UnsettableComboBox.cs
- XmlSchemaComplexContentExtension.cs
- RtfControls.cs
- Slider.cs
- NGCSerializer.cs
- Effect.cs
- RelatedCurrencyManager.cs
- DataSetSchema.cs
- PersonalizationProviderCollection.cs
- HighlightVisual.cs
- PackWebRequestFactory.cs
- IndexOutOfRangeException.cs
- SmiXetterAccessMap.cs
- DataGridRow.cs
- SafeTokenHandle.cs
- FixedSOMFixedBlock.cs
- X509ChainPolicy.cs
- AssemblyHash.cs
- DecimalFormatter.cs
- PersonalizationProviderHelper.cs
- ObjectDataSourceStatusEventArgs.cs
- StaticSiteMapProvider.cs
- WebPartAddingEventArgs.cs
- ComponentSerializationService.cs
- AsyncResult.cs
- WindowsFormsSynchronizationContext.cs
- Material.cs
- TreeNodeConverter.cs
- XmlAnyElementAttributes.cs
- ColumnReorderedEventArgs.cs
- TypeDescriptor.cs
- RoleManagerModule.cs