Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / Behavior / NoResizeHandleGlyph.cs / 1 / NoResizeHandleGlyph.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; using System.Runtime.InteropServices; ////// /// The NoResizeHandleGlyph represents the handle for a non-resizeable control in our new seleciton /// model. Note that the pen and brush are created once per instance of this class /// and re-used in our painting logic for perf. reasonse. /// internal class NoResizeHandleGlyph : SelectionGlyphBase { private bool isPrimary = false; ////// /// NoResizeHandleGlyph's constructor takes additional parameters: 'type' and 'primary selection'. /// Also, we create/cache our pen & brush here to avoid this action with every paint message. /// internal NoResizeHandleGlyph(Rectangle controlBounds, SelectionRules selRules, bool primarySelection, Behavior behavior) : base(behavior) { isPrimary = primarySelection; hitTestCursor = Cursors.Default; rules = SelectionRules.None; if ((selRules & SelectionRules.Moveable) != 0) { rules = SelectionRules.Moveable; hitTestCursor = Cursors.SizeAll; } // The handle is always upperleft bounds = new Rectangle(controlBounds.X - DesignerUtils.NORESIZEHANDLESIZE, controlBounds.Y - DesignerUtils.NORESIZEHANDLESIZE, DesignerUtils.NORESIZEHANDLESIZE, DesignerUtils.NORESIZEHANDLESIZE); hitBounds = bounds; } ////// /// Very simple paint logic. /// public override void Paint(PaintEventArgs pe) { DesignerUtils.DrawNoResizeHandle(pe.Graphics, bounds, isPrimary, this); } } } // 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
- TextTreeRootNode.cs
- DetailsViewDeleteEventArgs.cs
- ProfileEventArgs.cs
- RecordBuilder.cs
- TreeNodeCollection.cs
- NegotiationTokenAuthenticatorStateCache.cs
- TimeStampChecker.cs
- DbConnectionPoolGroup.cs
- SqlBulkCopyColumnMappingCollection.cs
- XmlDocumentSerializer.cs
- ExtentJoinTreeNode.cs
- DataListCommandEventArgs.cs
- StylusPointProperty.cs
- ServiceKnownTypeAttribute.cs
- Image.cs
- SafeSecurityHandles.cs
- FileDialog.cs
- Brush.cs
- FastPropertyAccessor.cs
- PartialCachingControl.cs
- CultureInfo.cs
- mactripleDES.cs
- COM2PictureConverter.cs
- WebPartUtil.cs
- ListViewItemSelectionChangedEvent.cs
- Vector3DValueSerializer.cs
- Clock.cs
- SettingsPropertyCollection.cs
- MultiAsyncResult.cs
- Comparer.cs
- InputLanguageSource.cs
- Span.cs
- BinHexEncoder.cs
- RoleGroupCollection.cs
- ProtocolsSection.cs
- TableCellCollection.cs
- SessionStateSection.cs
- Command.cs
- CodeThrowExceptionStatement.cs
- FileUtil.cs
- Encoder.cs
- DifferencingCollection.cs
- ConfigXmlAttribute.cs
- NumericPagerField.cs
- AddressingVersion.cs
- DataGridTable.cs
- DataBinding.cs
- SqlTransaction.cs
- WriteTimeStream.cs
- LateBoundBitmapDecoder.cs
- COM2Enum.cs
- SymLanguageVendor.cs
- ExpressionPrefixAttribute.cs
- NavigatorInput.cs
- FilteredXmlReader.cs
- xdrvalidator.cs
- ReferenceTypeElement.cs
- HttpFileCollection.cs
- LoginCancelEventArgs.cs
- HtmlSelect.cs
- JobCollate.cs
- StandardBindingImporter.cs
- StatusBarItem.cs
- MutexSecurity.cs
- ComplexType.cs
- TabItemAutomationPeer.cs
- StatusBar.cs
- MetadataCacheItem.cs
- CacheRequest.cs
- CreateUserWizardStep.cs
- DbProviderConfigurationHandler.cs
- CustomLineCap.cs
- IdentityModelDictionary.cs
- ContainerUIElement3D.cs
- PlanCompiler.cs
- Model3DGroup.cs
- MultipartContentParser.cs
- Column.cs
- SiteMapSection.cs
- SspiSafeHandles.cs
- XmlSchemaAnnotation.cs
- CustomLineCap.cs
- MenuItem.cs
- Model3DCollection.cs
- AlphaSortedEnumConverter.cs
- BitmapFrameDecode.cs
- WpfWebRequestHelper.cs
- OutputCacheProfile.cs
- ProfileService.cs
- Version.cs
- Header.cs
- TreeNode.cs
- ScriptingProfileServiceSection.cs
- SpecialFolderEnumConverter.cs
- DependencyPropertyValueSerializer.cs
- BulletChrome.cs
- IPHostEntry.cs
- HttpCapabilitiesBase.cs
- SapiAttributeParser.cs
- ScriptingJsonSerializationSection.cs