Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / MonthCalendarDesigner.cs / 1 / MonthCalendarDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.Design.MonthCalendarDesigner..ctor()")] namespace System.Windows.Forms.Design { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; ////// /// internal class MonthCalendarDesigner : ControlDesigner { public MonthCalendarDesigner() { AutoResizeHandles = true; } ////// Provides a designer that can design components /// that extend MonthCalendar. ////// /// 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; if ((Control.Parent == null) || (Control.Parent != null && !Control.Parent.IsMirrored)) { rules &= ~(SelectionRules.TopSizeable | SelectionRules.LeftSizeable); } else { Debug.Assert(Control.Parent != null && Control.Parent.IsMirrored); rules &= ~(SelectionRules.TopSizeable | 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
- PaginationProgressEventArgs.cs
- Oid.cs
- WorkflowServiceNamespace.cs
- CellIdBoolean.cs
- PatternMatcher.cs
- Parameter.cs
- DataViewSettingCollection.cs
- EntityModelSchemaGenerator.cs
- TraceFilter.cs
- EdmConstants.cs
- PatternMatchRules.cs
- NetworkAddressChange.cs
- TextServicesCompartmentEventSink.cs
- X509ChainElement.cs
- UnmanagedMemoryStreamWrapper.cs
- XslException.cs
- OneWayBindingElement.cs
- WorkflowQueue.cs
- InvalidCastException.cs
- IfJoinedCondition.cs
- IdentityReference.cs
- OpenTypeLayoutCache.cs
- DataGridViewCellMouseEventArgs.cs
- ControlType.cs
- TextBlockAutomationPeer.cs
- ProxySimple.cs
- PointConverter.cs
- BuildProvider.cs
- CubicEase.cs
- TraceHandler.cs
- ContentOperations.cs
- SynchronizedInputPattern.cs
- ColorTransform.cs
- OleDbDataReader.cs
- StringValidatorAttribute.cs
- ProcessThread.cs
- ListControlActionList.cs
- SqlComparer.cs
- ListViewDeleteEventArgs.cs
- GenericAuthenticationEventArgs.cs
- AsymmetricSignatureDeformatter.cs
- Effect.cs
- SafeUserTokenHandle.cs
- DesignerActionHeaderItem.cs
- ServerIdentity.cs
- SQLResource.cs
- CodeConditionStatement.cs
- TableRowCollection.cs
- TypeValidationEventArgs.cs
- EdmTypeAttribute.cs
- UnsupportedPolicyOptionsException.cs
- Button.cs
- PrivateFontCollection.cs
- ColumnPropertiesGroup.cs
- ContractCodeDomInfo.cs
- FontSizeConverter.cs
- CommandManager.cs
- __TransparentProxy.cs
- FontEmbeddingManager.cs
- SettingsContext.cs
- RequestResizeEvent.cs
- WebBrowserContainer.cs
- SQLResource.cs
- ClientConfigurationSystem.cs
- WebPartPersonalization.cs
- SqlMethods.cs
- WindowsListViewScroll.cs
- AvTraceFormat.cs
- SqlTypesSchemaImporter.cs
- HeaderCollection.cs
- WarningException.cs
- FillRuleValidation.cs
- InkCanvasSelectionAdorner.cs
- IpcClientChannel.cs
- ObjectSecurity.cs
- SamlEvidence.cs
- EntityProxyTypeInfo.cs
- PackageProperties.cs
- ZipIOCentralDirectoryBlock.cs
- SaveWorkflowCommand.cs
- AudioStateChangedEventArgs.cs
- XmlSchemaSimpleTypeList.cs
- XmlSerializerOperationGenerator.cs
- FactoryGenerator.cs
- WmlPanelAdapter.cs
- BlurEffect.cs
- SchemaElementDecl.cs
- DrawingServices.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- DetailsViewCommandEventArgs.cs
- ReachDocumentReferenceCollectionSerializer.cs
- HeaderFilter.cs
- DoubleLink.cs
- SystemNetworkInterface.cs
- TextDecorationLocationValidation.cs
- XPathNodeIterator.cs
- JavaScriptObjectDeserializer.cs
- RemoteWebConfigurationHostStream.cs
- DetailsViewCommandEventArgs.cs
- ZoomPercentageConverter.cs