Code:
/ FX-1434 / FX-1434 / 1.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
- ISAPIRuntime.cs
- TransformerInfo.cs
- InteropTrackingRecord.cs
- DynamicResourceExtension.cs
- PointLight.cs
- TextRangeEditLists.cs
- SafeNativeMethods.cs
- ScrollItemPatternIdentifiers.cs
- AssemblyAttributesGoHere.cs
- StylusPlugin.cs
- ChangePasswordAutoFormat.cs
- _Connection.cs
- SizeConverter.cs
- ThaiBuddhistCalendar.cs
- WindowsComboBox.cs
- MinMaxParagraphWidth.cs
- ControlPropertyNameConverter.cs
- BadImageFormatException.cs
- XmlSignatureProperties.cs
- Attributes.cs
- TabControlAutomationPeer.cs
- EdmScalarPropertyAttribute.cs
- RangeValidator.cs
- ViewCellRelation.cs
- FrugalList.cs
- AccessibleObject.cs
- SubstitutionDesigner.cs
- CodeTypeOfExpression.cs
- WebRequestModuleElement.cs
- ColumnPropertiesGroup.cs
- DoubleKeyFrameCollection.cs
- VirtualDirectoryMappingCollection.cs
- HtmlTernaryTree.cs
- MimeMultiPart.cs
- ContractType.cs
- ConfigXmlSignificantWhitespace.cs
- PlatformNotSupportedException.cs
- StandardToolWindows.cs
- ObjectQueryState.cs
- CompositionAdorner.cs
- ToolboxItemCollection.cs
- RelatedImageListAttribute.cs
- Page.cs
- WindowPatternIdentifiers.cs
- ConnectionProviderAttribute.cs
- PageHandlerFactory.cs
- embossbitmapeffect.cs
- CollectionChangedEventManager.cs
- StorageTypeMapping.cs
- BigInt.cs
- WebPartEditVerb.cs
- GridPattern.cs
- StrongNameUtility.cs
- FormatSettings.cs
- GlobalItem.cs
- ReadOnlyCollection.cs
- StoryFragments.cs
- ListBoxItemWrapperAutomationPeer.cs
- OpacityConverter.cs
- Quaternion.cs
- SqlMetaData.cs
- ListSortDescriptionCollection.cs
- ToolboxComponentsCreatingEventArgs.cs
- SearchExpression.cs
- SoapExtensionReflector.cs
- ClientSettingsStore.cs
- XPathCompileException.cs
- ObjectDataSourceMethodEventArgs.cs
- XmlSchemaComplexContentExtension.cs
- XmlAutoDetectWriter.cs
- UnsafeNetInfoNativeMethods.cs
- AnnouncementInnerClient11.cs
- Base64Stream.cs
- TableCellAutomationPeer.cs
- EncodingDataItem.cs
- FixedSOMTableRow.cs
- ReliableDuplexSessionChannel.cs
- Parser.cs
- TypeGeneratedEventArgs.cs
- Unit.cs
- WebServiceTypeData.cs
- EventDescriptor.cs
- SharedUtils.cs
- NameGenerator.cs
- IDataContractSurrogate.cs
- ProcessManager.cs
- BitmapEffectState.cs
- Typeface.cs
- CheckBoxList.cs
- FunctionDefinition.cs
- ContextMarshalException.cs
- RijndaelManaged.cs
- FrameworkContextData.cs
- AppDomainFactory.cs
- WebResponse.cs
- MultiSelector.cs
- SqlStream.cs
- HtmlElement.cs
- ValidateNames.cs
- BufferModesCollection.cs