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
- InputLanguageProfileNotifySink.cs
- FaultPropagationRecord.cs
- TextLineBreak.cs
- WindowsSolidBrush.cs
- WrappedIUnknown.cs
- EasingKeyFrames.cs
- InternalTypeHelper.cs
- SqlDeflator.cs
- MonthCalendar.cs
- RectIndependentAnimationStorage.cs
- CngAlgorithm.cs
- RequestCacheManager.cs
- Connector.xaml.cs
- DataGridToolTip.cs
- ServiceMemoryGates.cs
- ConnectionStringsExpressionBuilder.cs
- NeutralResourcesLanguageAttribute.cs
- PropertyInformation.cs
- ReadOnlyCollectionBase.cs
- SessionParameter.cs
- CodeParameterDeclarationExpressionCollection.cs
- XmlSchemaFacet.cs
- HMACRIPEMD160.cs
- RegexStringValidatorAttribute.cs
- QueryOperationResponseOfT.cs
- SoapServerMessage.cs
- FontFaceLayoutInfo.cs
- ZipIOFileItemStream.cs
- SqlUtil.cs
- regiisutil.cs
- ReadOnlyNameValueCollection.cs
- ObjectListFieldsPage.cs
- SessionStateContainer.cs
- FunctionParameter.cs
- EmptyQuery.cs
- ChtmlTextBoxAdapter.cs
- EventSetter.cs
- PageAsyncTask.cs
- CodeNamespaceCollection.cs
- SByteConverter.cs
- LocalBuilder.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- OdbcConnectionString.cs
- WizardSideBarListControlItem.cs
- DoubleAnimationUsingKeyFrames.cs
- BitVec.cs
- FixUp.cs
- TableStyle.cs
- AuthorizationRuleCollection.cs
- TextEditorMouse.cs
- NotFiniteNumberException.cs
- DataServiceQueryOfT.cs
- RelationshipNavigation.cs
- ProcessThread.cs
- MissingFieldException.cs
- RangeContentEnumerator.cs
- ProcessStartInfo.cs
- odbcmetadatacollectionnames.cs
- DrawingGroup.cs
- TreeIterator.cs
- MemberProjectedSlot.cs
- EntityException.cs
- MessageUtil.cs
- SEHException.cs
- LoginAutoFormat.cs
- TableLayoutRowStyleCollection.cs
- LogicalExpressionEditor.cs
- DataTableMapping.cs
- TypeLoadException.cs
- BinaryObjectInfo.cs
- InstanceCreationEditor.cs
- ValidationEventArgs.cs
- TrustManagerPromptUI.cs
- ByteStack.cs
- ClientApiGenerator.cs
- TextParagraphView.cs
- PartBasedPackageProperties.cs
- OdbcDataAdapter.cs
- TypedColumnHandler.cs
- WebScriptServiceHost.cs
- ClientCredentialsElement.cs
- WindowsNonControl.cs
- MenuAdapter.cs
- InheritanceService.cs
- DrawingDrawingContext.cs
- ResetableIterator.cs
- SpellerStatusTable.cs
- ObjectTokenCategory.cs
- PointF.cs
- TerminatorSinks.cs
- QueryStringHandler.cs
- TiffBitmapDecoder.cs
- SafeSecurityHelper.cs
- RenderCapability.cs
- RtfToken.cs
- FileDialog.cs
- InputMethod.cs
- SqlCacheDependencySection.cs
- CaretElement.cs
- Shape.cs