Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / ToolBarDesigner.cs / 1 / ToolBarDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.Design.ToolBarDesigner..ctor()")] namespace System.Windows.Forms.Design { using System.Runtime.InteropServices; using System.ComponentModel; using System.Diagnostics; using System; using System.ComponentModel.Design; using System.Windows.Forms; using System.Collections; ////// This class handles all design time behavior for the status bar class. /// internal class ToolBarDesigner : ControlDesigner { public ToolBarDesigner() { AutoResizeHandles = true; } ////// /// public override ICollection AssociatedComponents{ get { ToolBar tb = Control as ToolBar; if (tb != null) { return tb.Buttons; } return base.AssociatedComponents; } } ////// Retrieves a list of associated components. These are components that should be incluced in a cut or copy operation on this component. /// ////// /// Retrieves a set of rules concerning the movement capabilities of a component. /// This should be one or more flags from the SelectionRules class. If no designer /// provides rules for a component, the component will not get any UI services. /// public override SelectionRules SelectionRules { get { SelectionRules rules = base.SelectionRules; object component = Component; PropertyDescriptor propDock = TypeDescriptor.GetProperties(component)["Dock"]; PropertyDescriptor propAutoSize = TypeDescriptor.GetProperties(component)["AutoSize"]; if (propDock != null && propAutoSize != null) { DockStyle dock = (DockStyle)propDock.GetValue(component); bool autoSize = (bool)propAutoSize.GetValue(component); if (autoSize) { rules &= ~(SelectionRules.TopSizeable | SelectionRules.BottomSizeable); if (dock != DockStyle.None) { rules &= ~SelectionRules.AllSizeable; } } } return rules; } } } } // 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
- ContextBase.cs
- MimeFormImporter.cs
- ConnectionsZoneDesigner.cs
- RestHandler.cs
- ReferentialConstraintRoleElement.cs
- OleStrCAMarshaler.cs
- Region.cs
- HttpCacheVaryByContentEncodings.cs
- ClientOperation.cs
- NamedElement.cs
- ResourcesGenerator.cs
- ZipIOExtraField.cs
- httpserverutility.cs
- DataGridViewAdvancedBorderStyle.cs
- DBBindings.cs
- XmlSchemaExporter.cs
- SizeAnimationUsingKeyFrames.cs
- PropertyValueChangedEvent.cs
- StorageAssociationTypeMapping.cs
- CheckBoxField.cs
- Predicate.cs
- CFGGrammar.cs
- IntSecurity.cs
- VirtualPathData.cs
- Blend.cs
- TdsParser.cs
- DataSetMappper.cs
- SocketAddress.cs
- EditingContext.cs
- HyperLink.cs
- CellCreator.cs
- LassoSelectionBehavior.cs
- TableLayoutPanelCellPosition.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- ColorConvertedBitmap.cs
- ToolStripMenuItem.cs
- ValidationEventArgs.cs
- WindowsGraphics2.cs
- SectionUpdates.cs
- DrawTreeNodeEventArgs.cs
- CharAnimationBase.cs
- MultiTrigger.cs
- AttachedAnnotationChangedEventArgs.cs
- DoWhileDesigner.xaml.cs
- X509CertificateChain.cs
- MultipleViewPatternIdentifiers.cs
- ListItemCollection.cs
- ToolStripDropDownDesigner.cs
- DesignerPerfEventProvider.cs
- EventArgs.cs
- StylusPointPropertyId.cs
- InvalidateEvent.cs
- SqlBooleanMismatchVisitor.cs
- Size3D.cs
- ImageMapEventArgs.cs
- ContentControl.cs
- WindowsPen.cs
- OleDbSchemaGuid.cs
- Icon.cs
- SetStoryboardSpeedRatio.cs
- followingquery.cs
- ToolStripPanelCell.cs
- TypefaceCollection.cs
- TraceLog.cs
- XPathDocument.cs
- DecoderFallbackWithFailureFlag.cs
- PageAsyncTaskManager.cs
- XmlIncludeAttribute.cs
- ZipIORawDataFileBlock.cs
- TemplateControl.cs
- HighContrastHelper.cs
- Label.cs
- PropertyGrid.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- EntryIndex.cs
- XmlSchemaChoice.cs
- WindowsGraphics2.cs
- DataGridHyperlinkColumn.cs
- ProfilePropertySettings.cs
- AnnotationResourceChangedEventArgs.cs
- HtmlLabelAdapter.cs
- BindingsCollection.cs
- IsolatedStorageFileStream.cs
- FreezableDefaultValueFactory.cs
- EnumUnknown.cs
- HttpBrowserCapabilitiesWrapper.cs
- StyleTypedPropertyAttribute.cs
- ConnectionPoolManager.cs
- AttributeData.cs
- DesignerTextWriter.cs
- EntitySqlQueryCacheEntry.cs
- TraceEventCache.cs
- SafeEventLogReadHandle.cs
- UInt64Storage.cs
- DataKey.cs
- PenLineJoinValidation.cs
- Canvas.cs
- ToolStripPanelRow.cs
- ImageSource.cs
- ScriptingWebServicesSectionGroup.cs