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
- FtpWebResponse.cs
- ProfileProvider.cs
- CharEntityEncoderFallback.cs
- DbBuffer.cs
- RewritingSimplifier.cs
- Reference.cs
- URL.cs
- FocusChangedEventArgs.cs
- PopupEventArgs.cs
- XamlSerializerUtil.cs
- XmlTextReaderImpl.cs
- FixedSOMPage.cs
- TextViewElement.cs
- IpcClientManager.cs
- WindowsStatic.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- DataGridCellInfo.cs
- TdsRecordBufferSetter.cs
- XPathNavigatorReader.cs
- XmlSchemaParticle.cs
- RowParagraph.cs
- Stackframe.cs
- HandleRef.cs
- DataGridViewEditingControlShowingEventArgs.cs
- QueryGenerator.cs
- StylusOverProperty.cs
- WebPartConnectionsCancelVerb.cs
- VerificationException.cs
- WriteFileContext.cs
- TcpClientSocketManager.cs
- ArgIterator.cs
- TextRangeSerialization.cs
- EventPrivateKey.cs
- IssuerInformation.cs
- DefaultHttpHandler.cs
- DateTimeOffsetStorage.cs
- XmlToDatasetMap.cs
- FlowDocumentPaginator.cs
- Converter.cs
- Splitter.cs
- SqlDuplicator.cs
- SiteMapNodeItem.cs
- UncommonField.cs
- BitmapEffectInput.cs
- UnsafeNativeMethods.cs
- MatrixTransform.cs
- ChtmlPageAdapter.cs
- SqlUserDefinedAggregateAttribute.cs
- XmlDataSource.cs
- SuppressIldasmAttribute.cs
- GeneralTransform2DTo3D.cs
- BitmapInitialize.cs
- WebPartDisplayModeEventArgs.cs
- ComboBox.cs
- DifferencingCollection.cs
- CodeTypeDelegate.cs
- TabControl.cs
- TiffBitmapDecoder.cs
- MonitorWrapper.cs
- Point3D.cs
- WebPartActionVerb.cs
- SessionState.cs
- UpdateCommand.cs
- StreamResourceInfo.cs
- AlternateView.cs
- ImageBrush.cs
- DelegateSerializationHolder.cs
- ResourceDisplayNameAttribute.cs
- MeasureItemEvent.cs
- SoapFaultCodes.cs
- TailPinnedEventArgs.cs
- BigInt.cs
- BooleanFunctions.cs
- FormView.cs
- MenuItemStyle.cs
- DocumentViewer.cs
- Style.cs
- Popup.cs
- XamlDesignerSerializationManager.cs
- CfgSemanticTag.cs
- AspNetHostingPermission.cs
- FlowDocumentFormatter.cs
- RecipientInfo.cs
- WindowsRichEdit.cs
- Menu.cs
- DiffuseMaterial.cs
- String.cs
- srgsitem.cs
- EditorPartCollection.cs
- PageAdapter.cs
- ClipboardProcessor.cs
- FragmentQueryProcessor.cs
- DataControlPagerLinkButton.cs
- CodeIdentifier.cs
- HttpProfileGroupBase.cs
- glyphs.cs
- DataGridViewRow.cs
- TransformGroup.cs
- ObjectViewEntityCollectionData.cs
- SerializationObjectManager.cs