Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / TrackBarDesigner.cs / 1 / TrackBarDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.Design.TrackBarDesigner..ctor()")] namespace System.Windows.Forms.Design { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; ////// /// internal class TrackBarDesigner : ControlDesigner { public TrackBarDesigner() { AutoResizeHandles = true; } ////// Provides a designer that can design components /// that extend TrackBar. ////// /// 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; //VSWhidbey # 369288 rules |= SelectionRules.AllSizeable; PropertyDescriptor propAutoSize = TypeDescriptor.GetProperties(component)["AutoSize"]; if (propAutoSize != null) { bool autoSize = (bool)propAutoSize.GetValue(component); PropertyDescriptor propOrientation = TypeDescriptor.GetProperties(component)["Orientation"]; Orientation or = Orientation.Horizontal; if (propOrientation != null) { or = (Orientation)propOrientation.GetValue(component); } if (autoSize) { if (or == Orientation.Horizontal) { rules &= ~(SelectionRules.TopSizeable | SelectionRules.BottomSizeable); } else if (or == Orientation.Vertical) { rules &= ~(SelectionRules.LeftSizeable | SelectionRules.RightSizeable); } } } 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
- WsatServiceCertificate.cs
- SymbolUsageManager.cs
- SmtpAuthenticationManager.cs
- TreeViewHitTestInfo.cs
- DeferredTextReference.cs
- JsonCollectionDataContract.cs
- XmlDataFileEditor.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- GeneralTransform2DTo3D.cs
- ProcessManager.cs
- HtmlImage.cs
- ProgressBar.cs
- ResourceDescriptionAttribute.cs
- RowSpanVector.cs
- RC2.cs
- TableLayoutStyleCollection.cs
- CodeCastExpression.cs
- ConditionalAttribute.cs
- Journaling.cs
- Serialization.cs
- DataPagerCommandEventArgs.cs
- WindowsTab.cs
- XPathNodeInfoAtom.cs
- StringStorage.cs
- UIElementParagraph.cs
- PageRequestManager.cs
- KeyValueInternalCollection.cs
- DateTimeOffset.cs
- ThicknessKeyFrameCollection.cs
- Size.cs
- PersonalizationState.cs
- ToolStripContainer.cs
- IndexOutOfRangeException.cs
- SerializationException.cs
- ComPlusTypeLoader.cs
- CodeTypeParameterCollection.cs
- AutomationEvent.cs
- Type.cs
- HttpClientCertificate.cs
- Stack.cs
- PartitionerQueryOperator.cs
- StdRegProviderWrapper.cs
- WasEndpointConfigContainer.cs
- ScrollBar.cs
- RequiredAttributeAttribute.cs
- BindingRestrictions.cs
- TableLayoutSettingsTypeConverter.cs
- BasicHttpSecurityMode.cs
- UrlAuthorizationModule.cs
- bidPrivateBase.cs
- HttpHeaderCollection.cs
- RecognizedAudio.cs
- XsdDateTime.cs
- TypeSystemProvider.cs
- GridItem.cs
- Point3D.cs
- DynamicResourceExtensionConverter.cs
- Message.cs
- ProcessThreadCollection.cs
- CorrelationTokenInvalidatedHandler.cs
- coordinatorscratchpad.cs
- RootBrowserWindow.cs
- ModifiableIteratorCollection.cs
- RequestChannel.cs
- PieceDirectory.cs
- WriteableBitmap.cs
- XmlMembersMapping.cs
- DataKeyArray.cs
- Cursor.cs
- RijndaelManaged.cs
- Helpers.cs
- SymLanguageType.cs
- MenuItemCollection.cs
- TraceContextRecord.cs
- HelpKeywordAttribute.cs
- DnsPermission.cs
- SafeHandles.cs
- handlecollector.cs
- HybridDictionary.cs
- SafeCloseHandleCritical.cs
- ClassHandlersStore.cs
- HashMembershipCondition.cs
- DataGridItem.cs
- ProbeMatches11.cs
- FormViewPagerRow.cs
- COM2FontConverter.cs
- SoapClientProtocol.cs
- CommandDevice.cs
- IgnoreSectionHandler.cs
- HwndMouseInputProvider.cs
- InstanceContextManager.cs
- FlowSwitchDesigner.xaml.cs
- DispatcherExceptionEventArgs.cs
- RSAPKCS1KeyExchangeFormatter.cs
- MatrixConverter.cs
- UnionQueryOperator.cs
- DataGridViewComboBoxEditingControl.cs
- TransactedReceiveData.cs
- ReflectPropertyDescriptor.cs
- DataTableClearEvent.cs