Code:
/ FX-1434 / FX-1434 / 1.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
- AppSecurityManager.cs
- RSAOAEPKeyExchangeFormatter.cs
- ClaimComparer.cs
- RightsManagementPermission.cs
- DbQueryCommandTree.cs
- Location.cs
- Marshal.cs
- AnnotationAdorner.cs
- WindowsToolbarItemAsMenuItem.cs
- Identifier.cs
- CodeDomComponentSerializationService.cs
- MediaSystem.cs
- DbSourceParameterCollection.cs
- SharedStatics.cs
- Rotation3D.cs
- MessagePartSpecification.cs
- SafeNativeMethods.cs
- ImportCatalogPart.cs
- XMLSyntaxException.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- PerformanceCountersElement.cs
- C14NUtil.cs
- FileClassifier.cs
- KeysConverter.cs
- CodePrimitiveExpression.cs
- MarkupExtensionParser.cs
- Page.cs
- CodeArgumentReferenceExpression.cs
- FormsAuthenticationModule.cs
- DispatcherHookEventArgs.cs
- QueryStatement.cs
- FlowSwitch.cs
- PasswordRecovery.cs
- OutputChannelBinder.cs
- DocumentOrderComparer.cs
- DataServiceStreamResponse.cs
- TransactionContextManager.cs
- Win32.cs
- Command.cs
- MetadataWorkspace.cs
- SearchForVirtualItemEventArgs.cs
- MemoryMappedViewAccessor.cs
- DefaultPerformanceCounters.cs
- NameValueCollection.cs
- BitConverter.cs
- DetailsViewInsertedEventArgs.cs
- Converter.cs
- UserControlDesigner.cs
- relpropertyhelper.cs
- XPathEmptyIterator.cs
- MessageEnumerator.cs
- addressfiltermode.cs
- StrokeNodeOperations.cs
- DesignerCalendarAdapter.cs
- httpstaticobjectscollection.cs
- DataGridTextBox.cs
- RequestCache.cs
- ResourceContainer.cs
- RemotingAttributes.cs
- ConfigXmlWhitespace.cs
- IdentityElement.cs
- XmlSchemaSubstitutionGroup.cs
- PDBReader.cs
- WebReferencesBuildProvider.cs
- Rect3D.cs
- GPPOINT.cs
- PropertyDescriptorComparer.cs
- IOException.cs
- LinkAreaEditor.cs
- FileVersion.cs
- WebControlAdapter.cs
- SqlCacheDependencyDatabaseCollection.cs
- WorkflowClientDeliverMessageWrapper.cs
- ManagementQuery.cs
- WindowsTreeView.cs
- IgnoreFlushAndCloseStream.cs
- Figure.cs
- TcpSocketManager.cs
- InlineUIContainer.cs
- SynchronizationContext.cs
- LayoutInformation.cs
- SchemaTableOptionalColumn.cs
- ControlParameter.cs
- TextEncodedRawTextWriter.cs
- DataFormat.cs
- LambdaCompiler.Lambda.cs
- ParameterElement.cs
- WindowsGrip.cs
- ReadingWritingEntityEventArgs.cs
- MetadataCacheItem.cs
- ComplexPropertyEntry.cs
- PeerName.cs
- EntitySqlQueryCacheEntry.cs
- BitConverter.cs
- StateWorkerRequest.cs
- WindowsRegion.cs
- ListenerConnectionModeReader.cs
- EntityDataSource.cs
- WebContext.cs
- Transform3DCollection.cs