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
- AmbiguousMatchException.cs
- ToolTipService.cs
- DelegateBodyWriter.cs
- DataGridViewColumnTypePicker.cs
- ImportContext.cs
- ComplexObject.cs
- CompilerParameters.cs
- TextRangeEditTables.cs
- DefaultEvaluationContext.cs
- TypeResolvingOptionsAttribute.cs
- UnsafeNativeMethods.cs
- Point3DIndependentAnimationStorage.cs
- Processor.cs
- DateTimeValueSerializer.cs
- LineSegment.cs
- PagerSettings.cs
- FuncTypeConverter.cs
- GenericPrincipal.cs
- CommandField.cs
- ProviderConnectionPoint.cs
- ReflectionUtil.cs
- MatchingStyle.cs
- cookie.cs
- StylusSystemGestureEventArgs.cs
- Debug.cs
- RowBinding.cs
- CollectionType.cs
- CommandManager.cs
- ContextMenuStripGroupCollection.cs
- WebPartDisplayModeEventArgs.cs
- AnonymousIdentificationSection.cs
- MemberMaps.cs
- RootAction.cs
- ValueUnavailableException.cs
- DataTableReaderListener.cs
- RowToParametersTransformer.cs
- HtmlGenericControl.cs
- SecurityAlgorithmSuiteConverter.cs
- EventData.cs
- BamlLocalizationDictionary.cs
- InternalDispatchObject.cs
- nulltextnavigator.cs
- SystemInfo.cs
- PassportAuthentication.cs
- TextBoxRenderer.cs
- MenuItemBinding.cs
- GridViewColumnHeader.cs
- ThreadAbortException.cs
- CngProvider.cs
- BooleanSwitch.cs
- UpdateProgress.cs
- XmlDownloadManager.cs
- InternalResources.cs
- ColumnMap.cs
- COM2TypeInfoProcessor.cs
- ConstraintEnumerator.cs
- EventSource.cs
- ProxyHwnd.cs
- WindowsScrollBar.cs
- GatewayDefinition.cs
- AtomPub10CategoriesDocumentFormatter.cs
- ListViewGroup.cs
- SchemaEntity.cs
- FlagsAttribute.cs
- JsonXmlDataContract.cs
- ZoneMembershipCondition.cs
- MLangCodePageEncoding.cs
- Privilege.cs
- TaskbarItemInfo.cs
- ConnectionsZoneAutoFormat.cs
- InternalPolicyElement.cs
- VirtualizingStackPanel.cs
- UpdateProgress.cs
- CodeStatement.cs
- UrlMappingCollection.cs
- XmlSchemaSimpleContentRestriction.cs
- WebPartEditorApplyVerb.cs
- SchemaSetCompiler.cs
- ReaderContextStackData.cs
- AsymmetricAlgorithm.cs
- DataColumn.cs
- CommandField.cs
- SqlRecordBuffer.cs
- ReliableMessagingHelpers.cs
- PropertyInfoSet.cs
- Argument.cs
- SingleSelectRootGridEntry.cs
- InfoCardBaseException.cs
- RegexInterpreter.cs
- DependencyPropertyConverter.cs
- FormViewDeletedEventArgs.cs
- DateTimeFormatInfo.cs
- ColumnMapTranslator.cs
- NavigationCommands.cs
- TextTreeInsertElementUndoUnit.cs
- TablePatternIdentifiers.cs
- XmlFileEditor.cs
- NumberFormatter.cs
- WebRequestModuleElementCollection.cs
- TypeConverterBase.cs