Code:
/ FX-1434 / FX-1434 / 1.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
- Stacktrace.cs
- ContentIterators.cs
- ProtocolsInstallComponent.cs
- SQLRoleProvider.cs
- CodeComment.cs
- BamlVersionHeader.cs
- Typeface.cs
- LocationUpdates.cs
- WmlCommandAdapter.cs
- RectAnimation.cs
- Thread.cs
- StopStoryboard.cs
- ControlType.cs
- Guid.cs
- BindingContext.cs
- SolidColorBrush.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- Repeater.cs
- httpapplicationstate.cs
- CommandConverter.cs
- TextServicesProperty.cs
- DataGridViewAutoSizeModeEventArgs.cs
- ExpressionBuilderContext.cs
- ObjRef.cs
- SerializationBinder.cs
- FrameworkElementFactoryMarkupObject.cs
- DataPointer.cs
- WindowsFont.cs
- EffectiveValueEntry.cs
- WebColorConverter.cs
- EventTrigger.cs
- LabelLiteral.cs
- XdrBuilder.cs
- DesignerSerializerAttribute.cs
- CultureSpecificStringDictionary.cs
- StrokeCollection.cs
- RequestCachePolicy.cs
- LayoutManager.cs
- SimpleHandlerFactory.cs
- EventBookmark.cs
- ToolBarButtonClickEvent.cs
- RSACryptoServiceProvider.cs
- DecimalAnimation.cs
- BitmapSource.cs
- HatchBrush.cs
- Atom10FormatterFactory.cs
- Bitmap.cs
- SingleAnimationUsingKeyFrames.cs
- DelimitedListTraceListener.cs
- PageSettings.cs
- InheritanceRules.cs
- MonthChangedEventArgs.cs
- TemplatedMailWebEventProvider.cs
- ControlBuilderAttribute.cs
- Timer.cs
- WrappedIUnknown.cs
- SmiContext.cs
- ListControl.cs
- MultiView.cs
- PKCS1MaskGenerationMethod.cs
- WebControlParameterProxy.cs
- HelpInfo.cs
- DataGridViewCellStateChangedEventArgs.cs
- OleDbException.cs
- CheckBoxBaseAdapter.cs
- OdbcRowUpdatingEvent.cs
- InsufficientExecutionStackException.cs
- FormViewInsertEventArgs.cs
- HierarchicalDataBoundControl.cs
- Pair.cs
- RegistrationServices.cs
- DropShadowBitmapEffect.cs
- ValidationError.cs
- RotateTransform3D.cs
- SecurityDescriptor.cs
- StylusPlugin.cs
- VirtualDirectoryMappingCollection.cs
- TreeWalkHelper.cs
- XsltArgumentList.cs
- EFDataModelProvider.cs
- XmlSchemaSimpleContentExtension.cs
- MemberAccessException.cs
- dsa.cs
- ErrorWebPart.cs
- TriggerActionCollection.cs
- DataMisalignedException.cs
- BitmapEffect.cs
- Encoder.cs
- updateconfighost.cs
- CodeTypeMemberCollection.cs
- CodeMemberField.cs
- ObjectConverter.cs
- ControlParser.cs
- NumberFormatInfo.cs
- CustomValidator.cs
- EntitySetRetriever.cs
- _AutoWebProxyScriptEngine.cs
- DbDataRecord.cs
- Trace.cs
- Drawing.cs