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
- _RegBlobWebProxyDataBuilder.cs
- InvokeProviderWrapper.cs
- messageonlyhwndwrapper.cs
- XamlTreeBuilder.cs
- EnumMember.cs
- BrushConverter.cs
- ProviderCommandInfoUtils.cs
- ConsumerConnectionPointCollection.cs
- AsyncStreamReader.cs
- RequestCacheManager.cs
- XhtmlTextWriter.cs
- TypeUsageBuilder.cs
- _NestedSingleAsyncResult.cs
- TemplateBindingExtension.cs
- LinqDataSourceContextEventArgs.cs
- ItemMap.cs
- CodeDelegateInvokeExpression.cs
- SettingsAttributes.cs
- Debug.cs
- CookielessHelper.cs
- VariableQuery.cs
- TextDecoration.cs
- DesignerAttribute.cs
- PropertyToken.cs
- MessageQueuePermissionEntryCollection.cs
- ClientSponsor.cs
- SerialReceived.cs
- UnsafePeerToPeerMethods.cs
- ObjectPersistData.cs
- TreeNodeSelectionProcessor.cs
- SessionEndingEventArgs.cs
- ListViewEditEventArgs.cs
- TTSVoice.cs
- Transform3DCollection.cs
- GifBitmapDecoder.cs
- SequentialUshortCollection.cs
- SystemNetworkInterface.cs
- Zone.cs
- CaseStatement.cs
- Compiler.cs
- IIS7WorkerRequest.cs
- SchemaObjectWriter.cs
- SettingsProperty.cs
- HashHelper.cs
- HttpAsyncResult.cs
- ScrollChrome.cs
- DescendantBaseQuery.cs
- ClientSettingsStore.cs
- MouseWheelEventArgs.cs
- CapabilitiesRule.cs
- RelatedImageListAttribute.cs
- MenuBindingsEditorForm.cs
- TypeDescriptor.cs
- BitmapEffectDrawing.cs
- Vector3D.cs
- SQLInt64.cs
- FrameSecurityDescriptor.cs
- ConnectionManagementSection.cs
- Setter.cs
- DbMetaDataCollectionNames.cs
- PngBitmapDecoder.cs
- FunctionDetailsReader.cs
- ToolStripKeyboardHandlingService.cs
- MembershipPasswordException.cs
- AsyncPostBackTrigger.cs
- DomainUpDown.cs
- QualifierSet.cs
- CodeGeneratorAttribute.cs
- HttpStreamMessage.cs
- EndCreateSecurityTokenRequest.cs
- WhiteSpaceTrimStringConverter.cs
- SerializationFieldInfo.cs
- PackageDigitalSignature.cs
- ChannelEndpointElementCollection.cs
- NotConverter.cs
- OrderedDictionary.cs
- OleDbStruct.cs
- ActivityXRefPropertyEditor.cs
- ResourceAttributes.cs
- MessageDecoder.cs
- DataGridViewTextBoxColumn.cs
- ContentTypeSettingDispatchMessageFormatter.cs
- VirtualPathProvider.cs
- WrappedReader.cs
- SingleAnimation.cs
- Expressions.cs
- ProfileEventArgs.cs
- ComboBoxRenderer.cs
- FieldDescriptor.cs
- WebPermission.cs
- DateTimeOffset.cs
- SrgsElementList.cs
- VectorAnimation.cs
- StringToken.cs
- ContainsSearchOperator.cs
- XmlNodeList.cs
- MultipartContentParser.cs
- ColumnWidthChangingEvent.cs
- MeshGeometry3D.cs
- RequestChannelBinder.cs