Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / Behavior / SelectionGlyphBase.cs / 1 / SelectionGlyphBase.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 is the base class for all the selection Glyphs: GrabHandle, /// Hidden, Locked, Selection, and Tray Glyphs. This class includes /// all like-operations for the Selection glyphs. /// internal abstract class SelectionGlyphBase : Glyph { protected Rectangle bounds;//defines the bounds of the selection glyph protected Rectangle hitBounds;//defines the bounds used for hittest - it could be different than the bounds of the glyph itself protected Cursor hitTestCursor;//the cursor returned if hit test is positive protected SelectionRules rules;//the selection rules - defining how the control can change ////// /// Standard constructor. /// internal SelectionGlyphBase(Behavior behavior) : base(behavior) { } ////// /// Read-only property describing the SelecitonRules for these Glyphs. /// public SelectionRules SelectionRules { get { return rules; } } ////// /// Simple hit test rule: if the point is contained within the bounds - /// then it is a positive hit test. /// public override Cursor GetHitTest(Point p) { if (hitBounds.Contains(p)) { return hitTestCursor; } return null; } ////// /// Returns the HitTestCursor for this glyph. /// public Cursor HitTestCursor { get { return hitTestCursor; } } ////// /// The Bounds of this glyph. /// public override Rectangle Bounds { get { return bounds; } } ////// /// There's no paint logic on this base class. /// public override void Paint(PaintEventArgs pe) { } } } // 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
- SqlTriggerAttribute.cs
- ItemCollectionEditor.cs
- AttributeCollection.cs
- HttpApplicationStateBase.cs
- DataBinding.cs
- TimeStampChecker.cs
- VirtualPath.cs
- UInt16.cs
- ToolBar.cs
- COM2ComponentEditor.cs
- Point3DCollection.cs
- HtmlInputSubmit.cs
- RegexNode.cs
- DataControlFieldHeaderCell.cs
- Pair.cs
- DSACryptoServiceProvider.cs
- VirtualDirectoryMapping.cs
- ADMembershipUser.cs
- ObjectQueryExecutionPlan.cs
- ToolStripSeparatorRenderEventArgs.cs
- XmlSchemaObject.cs
- XPathExpr.cs
- Matrix3DValueSerializer.cs
- UInt32Storage.cs
- UIElement3D.cs
- DataGridViewColumnCollection.cs
- CustomErrorsSectionWrapper.cs
- PrintController.cs
- BufferModesCollection.cs
- AppDomainProtocolHandler.cs
- SmtpNetworkElement.cs
- ProfileService.cs
- Message.cs
- RectangleGeometry.cs
- CompositeControlDesigner.cs
- SamlConstants.cs
- TextureBrush.cs
- IssuedTokenClientCredential.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- BamlLocalizabilityResolver.cs
- WebPartConnectionsCloseVerb.cs
- XPathNodeInfoAtom.cs
- ActivityTypeCodeDomSerializer.cs
- StaticExtensionConverter.cs
- DefaultAsyncDataDispatcher.cs
- ToolBarPanel.cs
- DesignTimeXamlWriter.cs
- SqlCommand.cs
- SecurityTokenProvider.cs
- ViewGenerator.cs
- TextParaClient.cs
- ECDiffieHellman.cs
- InputLanguage.cs
- Internal.cs
- ClusterSafeNativeMethods.cs
- DbConnectionPoolIdentity.cs
- AspNetSynchronizationContext.cs
- DefaultValueConverter.cs
- embossbitmapeffect.cs
- CaseInsensitiveComparer.cs
- GeometryCollection.cs
- TablePattern.cs
- SqlCommandBuilder.cs
- ValidatingPropertiesEventArgs.cs
- WebReference.cs
- ZipArchive.cs
- WriterOutput.cs
- SoapEnvelopeProcessingElement.cs
- ListBox.cs
- InputProcessorProfiles.cs
- MenuItemStyleCollection.cs
- OletxVolatileEnlistment.cs
- Icon.cs
- CharKeyFrameCollection.cs
- ApplicationFileCodeDomTreeGenerator.cs
- SmiSettersStream.cs
- DataTable.cs
- StyleXamlTreeBuilder.cs
- LayoutSettings.cs
- GeometryGroup.cs
- OleDbPropertySetGuid.cs
- MonitoringDescriptionAttribute.cs
- SudsWriter.cs
- BaseTemplateCodeDomTreeGenerator.cs
- BuiltInExpr.cs
- WebPartConnectionsCancelEventArgs.cs
- Converter.cs
- UInt16Converter.cs
- AddInControllerImpl.cs
- SqlIdentifier.cs
- InheritanceService.cs
- __Error.cs
- InkCanvasAutomationPeer.cs
- PathSegment.cs
- TemplateControlParser.cs
- MethodMessage.cs
- EventMappingSettingsCollection.cs
- XmlNode.cs
- XmlParser.cs
- GradientSpreadMethodValidation.cs