Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / SelectionRange.cs / 1 / SelectionRange.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Runtime.Serialization.Formatters; using System.Diagnostics; using System; using System.Globalization; using System.Drawing; using System.Windows.Forms; using System.ComponentModel; using System.IO; using Microsoft.Win32; ////// /// This is a class that represents the date selection range of a MonthCalendar control. /// [ TypeConverterAttribute(typeof(SelectionRangeConverter)) ] public sealed class SelectionRange { ////// /// The lower limit of the selection range. /// private DateTime start = DateTime.MinValue.Date; ////// /// The upper limit of the selection range. /// private DateTime end = DateTime.MaxValue.Date; ////// /// Create a new SelectionRange object with the range [null, null]. /// public SelectionRange() { } ////// /// Create a new SelectionRange object with the given range. /// public SelectionRange(DateTime lower, DateTime upper) { //NOTE: simcooke: we explicitly DO NOT want to throw an exception here - just silently // swap them around. This is because the win32 control can return non- // normalized ranges. // We use lower.Date and upper.Date to remove any time component // if (lower < upper) { start = lower.Date; end = upper.Date; } else { start = upper.Date; end = lower.Date; } } ////// /// Create a new SelectionRange object given an existing SelectionRange object. /// public SelectionRange(SelectionRange range) { this.start = range.start; this.end = range.end; } ////// /// Returns the ending time of this range. /// public DateTime End { get { return end; } set { end = value.Date; } } ////// /// Starting time of this range /// public DateTime Start { get { return start; } set { start = value.Date; } } ////// /// Returns a string representation for this control. /// ///public override string ToString() { return "SelectionRange: Start: " + start.ToString() + ", End: " + end.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Runtime.Serialization.Formatters; using System.Diagnostics; using System; using System.Globalization; using System.Drawing; using System.Windows.Forms; using System.ComponentModel; using System.IO; using Microsoft.Win32; ////// /// This is a class that represents the date selection range of a MonthCalendar control. /// [ TypeConverterAttribute(typeof(SelectionRangeConverter)) ] public sealed class SelectionRange { ////// /// The lower limit of the selection range. /// private DateTime start = DateTime.MinValue.Date; ////// /// The upper limit of the selection range. /// private DateTime end = DateTime.MaxValue.Date; ////// /// Create a new SelectionRange object with the range [null, null]. /// public SelectionRange() { } ////// /// Create a new SelectionRange object with the given range. /// public SelectionRange(DateTime lower, DateTime upper) { //NOTE: simcooke: we explicitly DO NOT want to throw an exception here - just silently // swap them around. This is because the win32 control can return non- // normalized ranges. // We use lower.Date and upper.Date to remove any time component // if (lower < upper) { start = lower.Date; end = upper.Date; } else { start = upper.Date; end = lower.Date; } } ////// /// Create a new SelectionRange object given an existing SelectionRange object. /// public SelectionRange(SelectionRange range) { this.start = range.start; this.end = range.end; } ////// /// Returns the ending time of this range. /// public DateTime End { get { return end; } set { end = value.Date; } } ////// /// Starting time of this range /// public DateTime Start { get { return start; } set { start = value.Date; } } ////// /// Returns a string representation for this control. /// ///public override string ToString() { return "SelectionRange: Start: " + start.ToString() + ", End: " + end.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpServerProtocol.cs
- ObjectQuery_EntitySqlExtensions.cs
- ParseChildrenAsPropertiesAttribute.cs
- XmlRootAttribute.cs
- ScrollItemProviderWrapper.cs
- CodeRegionDirective.cs
- HttpPostedFileBase.cs
- CompiledIdentityConstraint.cs
- UpdateExpressionVisitor.cs
- ToolStripOverflowButton.cs
- Matrix.cs
- VisualBrush.cs
- GridViewSortEventArgs.cs
- Soap12ProtocolReflector.cs
- PersistenceTypeAttribute.cs
- ContentType.cs
- PrintDialog.cs
- FormViewPageEventArgs.cs
- ReflectEventDescriptor.cs
- Exceptions.cs
- StatusBarPanel.cs
- TextBoxBase.cs
- OdbcEnvironmentHandle.cs
- DependentList.cs
- LineSegment.cs
- QueryContext.cs
- Compiler.cs
- PageBreakRecord.cs
- RSACryptoServiceProvider.cs
- HttpCachePolicyElement.cs
- ElementNotAvailableException.cs
- LinkedList.cs
- SystemIcmpV6Statistics.cs
- WebPartTransformer.cs
- ResXResourceWriter.cs
- XmlNodeChangedEventManager.cs
- IIS7WorkerRequest.cs
- TextParaLineResult.cs
- XmlSchemaComplexType.cs
- PersistChildrenAttribute.cs
- DataKey.cs
- Converter.cs
- _CacheStreams.cs
- ConfigurationValues.cs
- MultiPropertyDescriptorGridEntry.cs
- InfoCardListRequest.cs
- AdCreatedEventArgs.cs
- TextTreeInsertElementUndoUnit.cs
- AdornerLayer.cs
- DataGridLinkButton.cs
- XmlName.cs
- Triangle.cs
- PkcsUtils.cs
- XmlSchemaSimpleTypeUnion.cs
- FixedStringLookup.cs
- NativeMethods.cs
- HMACMD5.cs
- MouseButtonEventArgs.cs
- EntityContainerRelationshipSetEnd.cs
- EngineSite.cs
- LoadMessageLogger.cs
- BitmapEffectCollection.cs
- HtmlFormAdapter.cs
- sqlser.cs
- SqlDataSourceTableQuery.cs
- TypeToTreeConverter.cs
- ClientRolePrincipal.cs
- ProjectionPlan.cs
- LineSegment.cs
- ObjectContext.cs
- ConnectionManagementSection.cs
- KnownColorTable.cs
- Dictionary.cs
- PropertyValueChangedEvent.cs
- RootBuilder.cs
- CanonicalXml.cs
- ThreadStartException.cs
- FilterEventArgs.cs
- documentsequencetextcontainer.cs
- HwndStylusInputProvider.cs
- SerializationEventsCache.cs
- TreeIterator.cs
- MessageQueueConverter.cs
- SafeTimerHandle.cs
- DirectoryObjectSecurity.cs
- ConstraintEnumerator.cs
- InfoCardBaseException.cs
- SystemWebSectionGroup.cs
- EntityDataSourceConfigureObjectContext.cs
- ObjectDataProvider.cs
- TargetParameterCountException.cs
- SerialReceived.cs
- Monitor.cs
- KnownTypeDataContractResolver.cs
- ArcSegment.cs
- TextViewDesigner.cs
- X509ChainPolicy.cs
- SecUtil.cs
- BitmapEffectGeneralTransform.cs
- BinaryWriter.cs