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
- XPathSingletonIterator.cs
- peernodestatemanager.cs
- AssemblyNameProxy.cs
- ContextStaticAttribute.cs
- ContractMapping.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- HttpCapabilitiesSectionHandler.cs
- ResXResourceReader.cs
- DESCryptoServiceProvider.cs
- ArrayElementGridEntry.cs
- HttpModuleAction.cs
- TreeNodeCollectionEditor.cs
- SchemaImporterExtensionElement.cs
- MdiWindowListItemConverter.cs
- ScriptHandlerFactory.cs
- WindowsTokenRoleProvider.cs
- ConfigPathUtility.cs
- SByteConverter.cs
- SynchronizedInputProviderWrapper.cs
- ElementNotAvailableException.cs
- StringOutput.cs
- SqlDataSourceCache.cs
- WorkflowTransactionService.cs
- WebPartRestoreVerb.cs
- HttpCachePolicyBase.cs
- QilChoice.cs
- ToolStripPanelRenderEventArgs.cs
- ContextStaticAttribute.cs
- DataGridCommandEventArgs.cs
- SQLDecimal.cs
- objectquery_tresulttype.cs
- ParameterCollection.cs
- WebPartDisplayMode.cs
- IntPtr.cs
- FontSizeConverter.cs
- Emitter.cs
- IInstanceTable.cs
- HttpWebRequest.cs
- HtmlLink.cs
- LowerCaseStringConverter.cs
- PageCodeDomTreeGenerator.cs
- PerformanceCountersElement.cs
- ControlEvent.cs
- SQLBinaryStorage.cs
- ClrPerspective.cs
- GroupBox.cs
- TreeView.cs
- AttachmentCollection.cs
- GridViewDeleteEventArgs.cs
- StrongNameHelpers.cs
- DataSourceHelper.cs
- x509store.cs
- EditableTreeList.cs
- RenderTargetBitmap.cs
- CompressedStack.cs
- HtmlInputSubmit.cs
- DataSourceComponent.cs
- XhtmlConformanceSection.cs
- FtpRequestCacheValidator.cs
- WebPartCloseVerb.cs
- SafeEventLogReadHandle.cs
- WpfKnownType.cs
- InvokeHandlers.cs
- GeneralTransform3DTo2D.cs
- ObjectCloneHelper.cs
- ExeConfigurationFileMap.cs
- UriParserTemplates.cs
- DataGridItemAutomationPeer.cs
- FormClosedEvent.cs
- XPathDocumentIterator.cs
- LocatorPartList.cs
- _ProxyChain.cs
- TableLayoutStyleCollection.cs
- TextEndOfParagraph.cs
- Image.cs
- WorkflowInstanceUnhandledExceptionRecord.cs
- DeadLetterQueue.cs
- MimeMapping.cs
- Animatable.cs
- ZipIORawDataFileBlock.cs
- WebDescriptionAttribute.cs
- PackagingUtilities.cs
- DecimalAverageAggregationOperator.cs
- WindowPatternIdentifiers.cs
- InvalidPrinterException.cs
- QilTernary.cs
- ExpandCollapsePattern.cs
- StructuredTypeInfo.cs
- QuaternionAnimationBase.cs
- CfgParser.cs
- XmlSerializationWriter.cs
- BulletedListEventArgs.cs
- PackageController.cs
- SessionViewState.cs
- OracleEncoding.cs
- XmlQueryOutput.cs
- ClientSettingsStore.cs
- BuilderInfo.cs
- List.cs
- CompiledQuery.cs