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; } ////// /// 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.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafeSecurityHandles.cs
- UserValidatedEventArgs.cs
- HwndAppCommandInputProvider.cs
- Translator.cs
- XmlDictionaryString.cs
- AsyncDataRequest.cs
- OdbcConnectionPoolProviderInfo.cs
- InvalidBodyAccessException.cs
- Mappings.cs
- webeventbuffer.cs
- DbMetaDataColumnNames.cs
- Choices.cs
- EmbeddedObject.cs
- CacheRequest.cs
- odbcmetadatacollectionnames.cs
- SerializerProvider.cs
- FrameworkElement.cs
- XamlWriter.cs
- ArrayTypeMismatchException.cs
- XmlSerializerSection.cs
- XmlSchemaElement.cs
- IDQuery.cs
- Descriptor.cs
- BrowsableAttribute.cs
- IntSecurity.cs
- IndentedWriter.cs
- XmlSchemaSimpleTypeUnion.cs
- HitTestParameters3D.cs
- Registration.cs
- SqlConnectionHelper.cs
- LoadMessageLogger.cs
- QilValidationVisitor.cs
- MailMessageEventArgs.cs
- SpellerHighlightLayer.cs
- CodePrimitiveExpression.cs
- ChildChangedEventArgs.cs
- PropertyValue.cs
- UserControl.cs
- ReadOnlyTernaryTree.cs
- QilBinary.cs
- ScalarConstant.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- TraceData.cs
- StreamWriter.cs
- BinaryFormatter.cs
- TypedReference.cs
- TextStore.cs
- Point.cs
- Bold.cs
- SchemeSettingElement.cs
- EventLogPermissionEntryCollection.cs
- DivideByZeroException.cs
- WebSysDefaultValueAttribute.cs
- RowType.cs
- LogExtentCollection.cs
- SiteMapDataSource.cs
- WpfKnownType.cs
- ApplicationHost.cs
- XXXInfos.cs
- Control.cs
- XPathSelectionIterator.cs
- BackStopAuthenticationModule.cs
- AnonymousIdentificationModule.cs
- SharedPerformanceCounter.cs
- BitConverter.cs
- SqlExpressionNullability.cs
- FragmentQueryProcessor.cs
- GradientStop.cs
- FieldToken.cs
- Int32Storage.cs
- ErrorRuntimeConfig.cs
- Function.cs
- TimeSpanOrInfiniteConverter.cs
- DesignerActionPanel.cs
- UIElement3D.cs
- DesigntimeLicenseContext.cs
- InvokeProviderWrapper.cs
- TypeConstant.cs
- DeclaredTypeElement.cs
- StructuralCache.cs
- FixedTextSelectionProcessor.cs
- SocketPermission.cs
- GlobalizationAssembly.cs
- ProcessModelInfo.cs
- ToolStripDropDownMenu.cs
- ZipArchive.cs
- DrawingContextDrawingContextWalker.cs
- PerformanceCounterManager.cs
- DataSourceView.cs
- ProcessHostServerConfig.cs
- DisplayMemberTemplateSelector.cs
- DependencyPropertyConverter.cs
- ClientSettingsSection.cs
- XPathSingletonIterator.cs
- RadioButtonFlatAdapter.cs
- DataSvcMapFile.cs
- XmlDownloadManager.cs
- HScrollBar.cs
- X509CertificateValidator.cs
- HtmlInputCheckBox.cs