Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DateBoldEvent.cs / 1305376 / DateBoldEvent.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing;
using Microsoft.Win32;
///
///
///
/// The month calendar control fires this event to request information
/// about how the days within the visible months should be displayed.
///
//
//
public class DateBoldEventArgs : EventArgs {
readonly DateTime startDate; //the starting date
readonly int size; // requested length of array
int[] daysToBold = null;
internal DateBoldEventArgs(DateTime start, int size) {
startDate = start;
this.size = size;
}
///
///
/// [To be supplied.]
///
public DateTime StartDate {
get { return startDate; }
}
///
///
/// [To be supplied.]
///
public int Size {
get { return size; }
}
///
///
/// [To be supplied.]
///
public int[] DaysToBold {
get { return daysToBold; }
set { daysToBold = value; }
}
}
}
// 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
- StorageInfo.cs
- IntellisenseTextBox.cs
- DSASignatureFormatter.cs
- FormViewDesigner.cs
- SettingsPropertyNotFoundException.cs
- RelatedEnd.cs
- ParentUndoUnit.cs
- MemberPath.cs
- BitmapData.cs
- ComponentCodeDomSerializer.cs
- NotFiniteNumberException.cs
- PerformanceCounterManager.cs
- FilterQuery.cs
- DbCommandTree.cs
- SafeRightsManagementSessionHandle.cs
- Matrix3DConverter.cs
- BaseTreeIterator.cs
- wgx_exports.cs
- CancelEventArgs.cs
- TableDetailsCollection.cs
- DictionaryContent.cs
- ReliableChannelListener.cs
- PointAnimationClockResource.cs
- JsonStringDataContract.cs
- TextOptions.cs
- IRCollection.cs
- ModuleElement.cs
- BuildProviderCollection.cs
- WebPartConnectionsConnectVerb.cs
- DataShape.cs
- controlskin.cs
- ManifestBasedResourceGroveler.cs
- StrongNamePublicKeyBlob.cs
- CompilerParameters.cs
- DataSourceCacheDurationConverter.cs
- DataGridViewTopLeftHeaderCell.cs
- BindToObject.cs
- ResourceManager.cs
- XmlSiteMapProvider.cs
- SQLSingleStorage.cs
- WorkflowApplicationAbortedEventArgs.cs
- WorkflowElementDialog.cs
- FontUnitConverter.cs
- DataRowComparer.cs
- PropertyMappingExceptionEventArgs.cs
- Table.cs
- CoreSwitches.cs
- HtmlInputHidden.cs
- WebSysDefaultValueAttribute.cs
- OleDbPermission.cs
- QuaternionAnimationBase.cs
- LiteralControl.cs
- ResourceDescriptionAttribute.cs
- TextRange.cs
- FormsIdentity.cs
- TransferRequestHandler.cs
- CacheEntry.cs
- Win32.cs
- NameValuePermission.cs
- Substitution.cs
- AmbiguousMatchException.cs
- TextSerializer.cs
- HttpCachePolicyElement.cs
- SelectionItemPatternIdentifiers.cs
- InkCanvasSelection.cs
- PassportAuthenticationEventArgs.cs
- FederatedMessageSecurityOverHttp.cs
- WebPartsPersonalizationAuthorization.cs
- XmlWrappingWriter.cs
- Section.cs
- Slider.cs
- OneOfScalarConst.cs
- OracleTimeSpan.cs
- QilReference.cs
- ClientFormsIdentity.cs
- ContentHostHelper.cs
- OleDbSchemaGuid.cs
- SynchronousReceiveElement.cs
- XmlResolver.cs
- BrowserTree.cs
- StaticDataManager.cs
- DBDataPermissionAttribute.cs
- DataGridViewRow.cs
- FragmentNavigationEventArgs.cs
- HtmlProps.cs
- WebPartUtil.cs
- MonthCalendar.cs
- RequiredFieldValidator.cs
- SqlCachedBuffer.cs
- DataSourceBooleanViewSchemaConverter.cs
- XamlSerializerUtil.cs
- COAUTHINFO.cs
- ResourceProviderFactory.cs
- ThreadAttributes.cs
- PriorityQueue.cs
- XhtmlBasicValidationSummaryAdapter.cs
- SettingsContext.cs
- GenericAuthenticationEventArgs.cs
- PropertyNames.cs
- SqlTriggerAttribute.cs