Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DateBoldEvent.cs / 1 / 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; } ////// /// 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. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BypassElementCollection.cs
- CollectionView.cs
- RestClientProxyHandler.cs
- Hex.cs
- GatewayDefinition.cs
- AnnotationDocumentPaginator.cs
- AuthenticatedStream.cs
- StickyNoteAnnotations.cs
- PageFunction.cs
- RTLAwareMessageBox.cs
- BrowsableAttribute.cs
- HotSpot.cs
- _AutoWebProxyScriptHelper.cs
- FieldToken.cs
- CompatibleIComparer.cs
- DragEvent.cs
- UIElement.cs
- SerializationAttributes.cs
- Operator.cs
- Stacktrace.cs
- TreeViewTemplateSelector.cs
- BitmapData.cs
- SocketInformation.cs
- COM2EnumConverter.cs
- FixedHighlight.cs
- PolicyValidationException.cs
- UrlParameterReader.cs
- FormDesigner.cs
- StreamSecurityUpgradeAcceptor.cs
- ScriptControlManager.cs
- HwndMouseInputProvider.cs
- BlockCollection.cs
- ScalarOps.cs
- PublisherMembershipCondition.cs
- PrintDialogException.cs
- ViewGenResults.cs
- RoutingTable.cs
- TemplateContainer.cs
- DataGridViewColumnHeaderCell.cs
- TableStyle.cs
- XamlContextStack.cs
- CodeNamespaceImport.cs
- DynamicDataRouteHandler.cs
- HttpNamespaceReservationInstallComponent.cs
- LogReserveAndAppendState.cs
- DesignerExtenders.cs
- InternalsVisibleToAttribute.cs
- CultureInfo.cs
- SendReply.cs
- Paragraph.cs
- UpDownEvent.cs
- ComponentEvent.cs
- HijriCalendar.cs
- CommandHelpers.cs
- OwnerDrawPropertyBag.cs
- Baml2006ReaderSettings.cs
- PassportIdentity.cs
- InputScopeAttribute.cs
- ReadOnlyDictionary.cs
- XmlSchemaProviderAttribute.cs
- ComplexLine.cs
- Asn1Utilities.cs
- LineServicesCallbacks.cs
- TextEncodedRawTextWriter.cs
- GeometryCombineModeValidation.cs
- ConfigurationElement.cs
- SystemTcpConnection.cs
- AllMembershipCondition.cs
- ArraySortHelper.cs
- AuthenticationSchemesHelper.cs
- ValueTypeFixupInfo.cs
- ResourceSet.cs
- MetadataFile.cs
- ToolboxDataAttribute.cs
- XamlTreeBuilderBamlRecordWriter.cs
- XmlDataImplementation.cs
- WebControlsSection.cs
- NonClientArea.cs
- TreeBuilder.cs
- InstanceDescriptor.cs
- CodeTypeOfExpression.cs
- GridItemPattern.cs
- GetWinFXPath.cs
- RequiredFieldValidator.cs
- PerformanceCountersElement.cs
- SubpageParaClient.cs
- ReadOnlyTernaryTree.cs
- CapabilitiesRule.cs
- FastEncoderWindow.cs
- HitTestDrawingContextWalker.cs
- GroupJoinQueryOperator.cs
- GroupLabel.cs
- ServiceModelConfigurationSection.cs
- SplayTreeNode.cs
- ListenerElementsCollection.cs
- ZoomPercentageConverter.cs
- ProgressBarRenderer.cs
- Package.cs
- MatrixTransform.cs
- ObjectDataSourceStatusEventArgs.cs