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
- UrlEncodedParameterWriter.cs
- UserNamePasswordValidator.cs
- CollectionBase.cs
- ConnectionProviderAttribute.cs
- TemplateInstanceAttribute.cs
- EditorZoneDesigner.cs
- PropertyValueChangedEvent.cs
- StaticTextPointer.cs
- StreamGeometry.cs
- TreeNodeMouseHoverEvent.cs
- NamespaceCollection.cs
- Int32RectConverter.cs
- InstanceData.cs
- IdnMapping.cs
- VirtualPathProvider.cs
- ApplicationDirectoryMembershipCondition.cs
- OrthographicCamera.cs
- HttpServerChannel.cs
- HtmlInputSubmit.cs
- SmiEventSink.cs
- HtmlHistory.cs
- FixedSOMPageConstructor.cs
- ReceiveSecurityHeaderElementManager.cs
- SerializationException.cs
- DataGridViewCheckBoxCell.cs
- KeyValuePair.cs
- PackWebResponse.cs
- Point3D.cs
- FontCacheLogic.cs
- DesignSurfaceManager.cs
- _DisconnectOverlappedAsyncResult.cs
- XmlElementAttribute.cs
- XmlSchemaAnyAttribute.cs
- RecipientInfo.cs
- DesignerActionUIService.cs
- MarkedHighlightComponent.cs
- DesignerCalendarAdapter.cs
- ChainOfResponsibility.cs
- Parameter.cs
- TimeSpanOrInfiniteConverter.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- OutputWindow.cs
- Guid.cs
- PointValueSerializer.cs
- RegexCharClass.cs
- HTMLTagNameToTypeMapper.cs
- BaseUriHelper.cs
- MergeFilterQuery.cs
- PriorityQueue.cs
- MatrixKeyFrameCollection.cs
- NetworkInformationPermission.cs
- DefaultValueConverter.cs
- ViewStateModeByIdAttribute.cs
- IOException.cs
- ApplicationHost.cs
- SecurityException.cs
- WebBrowserSiteBase.cs
- HierarchicalDataSourceControl.cs
- HttpTransportSecurity.cs
- Win32.cs
- Encoding.cs
- Sorting.cs
- TreeViewImageKeyConverter.cs
- MetafileHeaderWmf.cs
- WebServiceMethodData.cs
- SelfIssuedAuthRSACryptoProvider.cs
- WebPartCatalogAddVerb.cs
- Vector3DValueSerializer.cs
- ISessionStateStore.cs
- WindowHideOrCloseTracker.cs
- XhtmlMobileTextWriter.cs
- ImportDesigner.xaml.cs
- MenuRendererClassic.cs
- Configuration.cs
- StorageMappingFragment.cs
- TableLayout.cs
- XmlWellformedWriter.cs
- XmlSchemaAnyAttribute.cs
- OutputWindow.cs
- Root.cs
- ObjectAssociationEndMapping.cs
- X509Certificate2Collection.cs
- BuildProvidersCompiler.cs
- XmlReflectionMember.cs
- SoapHeaderAttribute.cs
- ValidationManager.cs
- Material.cs
- EntityCommandCompilationException.cs
- AdornedElementPlaceholder.cs
- activationcontext.cs
- Utils.cs
- CharacterMetricsDictionary.cs
- MediaContext.cs
- DecoderFallback.cs
- AliasedSlot.cs
- LogManagementAsyncResult.cs
- SizeFConverter.cs
- HttpListenerRequest.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- RecordManager.cs