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
- ViewCellRelation.cs
- FullTextState.cs
- TextTreeNode.cs
- DesignerActionService.cs
- ToolStripDropDown.cs
- JumpTask.cs
- Int16KeyFrameCollection.cs
- SafeWaitHandle.cs
- ScaleTransform.cs
- DecimalAnimation.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- WebConfigurationHostFileChange.cs
- CodeObject.cs
- SafeCertificateStore.cs
- CatalogPartCollection.cs
- EasingKeyFrames.cs
- OptimalBreakSession.cs
- ConvertEvent.cs
- ListViewGroup.cs
- TableLayoutColumnStyleCollection.cs
- CryptoProvider.cs
- _ContextAwareResult.cs
- DataGridViewRowHeaderCell.cs
- DataTableMappingCollection.cs
- TdsParserSafeHandles.cs
- CatalogZoneDesigner.cs
- WebPartPersonalization.cs
- EntityDataSourceWizardForm.cs
- BinaryWriter.cs
- RemoteWebConfigurationHostStream.cs
- DataGridViewTextBoxCell.cs
- OperatingSystem.cs
- OdbcTransaction.cs
- AsyncOperation.cs
- SaveLedgerEntryRequest.cs
- Triangle.cs
- MarkupCompiler.cs
- FixUpCollection.cs
- Geometry3D.cs
- TextContainerChangeEventArgs.cs
- ItemChangedEventArgs.cs
- ComponentSerializationService.cs
- ObjectIDGenerator.cs
- ConnectionManagementElementCollection.cs
- DefaultTraceListener.cs
- PrimitiveDataContract.cs
- RoutedEvent.cs
- LinqMaximalSubtreeNominator.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- HttpStreamMessageEncoderFactory.cs
- StringExpressionSet.cs
- PriorityBinding.cs
- SerializationUtility.cs
- Floater.cs
- FastEncoderWindow.cs
- TableItemPatternIdentifiers.cs
- VolatileEnlistmentState.cs
- ToolStripContextMenu.cs
- WebErrorHandler.cs
- AttachedPropertyMethodSelector.cs
- RelativeSource.cs
- ColorTranslator.cs
- ConnectionsZone.cs
- HtmlInputHidden.cs
- XsdDateTime.cs
- SQLMembershipProvider.cs
- PasswordBox.cs
- SystemWebSectionGroup.cs
- InstancePersistenceCommandException.cs
- PropertyFilter.cs
- OleCmdHelper.cs
- Lookup.cs
- WebServiceData.cs
- BitFlagsGenerator.cs
- RefType.cs
- SqlDataSourceQuery.cs
- SystemWebCachingSectionGroup.cs
- XmlChildEnumerator.cs
- ImageAnimator.cs
- XmlQueryStaticData.cs
- CharUnicodeInfo.cs
- XmlIncludeAttribute.cs
- PtsHelper.cs
- HebrewNumber.cs
- Inline.cs
- Rectangle.cs
- DataGridViewColumnConverter.cs
- DiagnosticsConfiguration.cs
- EmptyStringExpandableObjectConverter.cs
- ScriptResourceAttribute.cs
- NativeDirectoryServicesQueryAPIs.cs
- PolyLineSegment.cs
- PropertyRef.cs
- OracleConnection.cs
- UriTemplateVariableQueryValue.cs
- DescendantOverDescendantQuery.cs
- SqlWorkflowPersistenceService.cs
- BuildManager.cs
- RegistrationServices.cs
- ModuleElement.cs