Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Tablet.cs
- DescriptionAttribute.cs
- ProcessInfo.cs
- JsonQNameDataContract.cs
- WorkflowPrinting.cs
- SqlDataSourceSelectingEventArgs.cs
- StrongNameUtility.cs
- SoapServerMessage.cs
- NotImplementedException.cs
- RankException.cs
- XmlSchemaImporter.cs
- Hashtable.cs
- FormViewInsertedEventArgs.cs
- Bits.cs
- UIPermission.cs
- SequenceDesigner.cs
- OleCmdHelper.cs
- keycontainerpermission.cs
- PeerNearMe.cs
- SoapClientMessage.cs
- HttpDictionary.cs
- RuleSetBrowserDialog.cs
- HtmlMeta.cs
- MultiSelectRootGridEntry.cs
- DataBoundControlAdapter.cs
- COM2Properties.cs
- PointAnimationClockResource.cs
- WindowsGraphics2.cs
- _SingleItemRequestCache.cs
- SudsWriter.cs
- AlternationConverter.cs
- EdmSchemaError.cs
- ListControlStringCollectionEditor.cs
- PersistChildrenAttribute.cs
- ReadOnlyState.cs
- AutoResizedEvent.cs
- EventListener.cs
- EncryptedType.cs
- XmlNamespaceDeclarationsAttribute.cs
- DataTableMappingCollection.cs
- IApplicationTrustManager.cs
- SkewTransform.cs
- TimeSpanMinutesConverter.cs
- BindingContext.cs
- SchemaContext.cs
- UnsupportedPolicyOptionsException.cs
- DataTableReader.cs
- TemplatedMailWebEventProvider.cs
- RequestResizeEvent.cs
- ChangeNode.cs
- RenderingEventArgs.cs
- ProtocolImporter.cs
- VisualStateManager.cs
- HealthMonitoringSectionHelper.cs
- DesignerWidgets.cs
- ApplicationTrust.cs
- RoleManagerEventArgs.cs
- GradientStop.cs
- SolidColorBrush.cs
- DetailsViewUpdatedEventArgs.cs
- DoubleConverter.cs
- TimeSpanStorage.cs
- ProtocolsConfigurationEntry.cs
- GridViewEditEventArgs.cs
- Rules.cs
- sapiproxy.cs
- wmiprovider.cs
- CryptoApi.cs
- AssemblyBuilderData.cs
- TextPenaltyModule.cs
- FloaterBaseParagraph.cs
- DataGridViewCellValueEventArgs.cs
- WindowsIdentity.cs
- WeakEventManager.cs
- SoapSchemaImporter.cs
- DataTableCollection.cs
- DependentList.cs
- HebrewNumber.cs
- Item.cs
- ResourceProviderFactory.cs
- CacheVirtualItemsEvent.cs
- DataGridViewColumn.cs
- ResXDataNode.cs
- SqlHelper.cs
- TabletDevice.cs
- FixedHighlight.cs
- TreeView.cs
- WebBrowserDocumentCompletedEventHandler.cs
- CodeMemberEvent.cs
- EnumType.cs
- Point3DCollectionConverter.cs
- VisualBasicDesignerHelper.cs
- OracleMonthSpan.cs
- ApplicationBuildProvider.cs
- OutputCacheSettingsSection.cs
- FormsAuthenticationCredentials.cs
- ConfigurationValues.cs
- ImageMap.cs
- StylusButtonCollection.cs
- NativeMethods.cs