Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / DatePickerDateValidationErrorEventArgs.cs / 1305600 / DatePickerDateValidationErrorEventArgs.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace System.Windows.Controls { ////// Provides data for the DateValidationError event. /// public class DatePickerDateValidationErrorEventArgs : EventArgs { private bool _throwException; ////// Initializes a new instance of the DatePickerDateValidationErrorEventArgs class. /// /// The exception that initially triggered the DateValidationError event. /// The text being parsed. public DatePickerDateValidationErrorEventArgs(Exception exception, string text) { this.Text = text; this.Exception = exception; } ////// Gets the exception that initially triggered the DateValidationError event. /// public Exception Exception { get; private set; } ////// Gets the text being parsed when the DateValidationError event was raised. /// public string Text { get; private set; } ////// Gets or sets a value that indicates whether Exception should be thrown. /// public bool ThrowException { get { return this._throwException; } set { this._throwException = value; } } } } // 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
- VectorAnimation.cs
- FeatureSupport.cs
- HandlerFactoryWrapper.cs
- SqlGenerator.cs
- XmlSchemaGroupRef.cs
- AssociationProvider.cs
- GPStream.cs
- SoapFormatter.cs
- DesignerTextWriter.cs
- NativeMethods.cs
- DisplayNameAttribute.cs
- TogglePattern.cs
- Brush.cs
- SqlConnection.cs
- WindowsFormsSectionHandler.cs
- UpdateCommandGenerator.cs
- BaseDataBoundControl.cs
- ImageMap.cs
- GlobalDataBindingHandler.cs
- TableChangeProcessor.cs
- EncodingFallbackAwareXmlTextWriter.cs
- StatusBarDrawItemEvent.cs
- EnlistmentTraceIdentifier.cs
- DeploymentExceptionMapper.cs
- SqlUnionizer.cs
- GridViewDeleteEventArgs.cs
- ListViewInsertionMark.cs
- GridViewRowPresenterBase.cs
- IisTraceListener.cs
- ToolBarOverflowPanel.cs
- MaskedTextBox.cs
- Image.cs
- ConfigurationElementCollection.cs
- FixedSOMFixedBlock.cs
- SqlXmlStorage.cs
- CachingHintValidation.cs
- WindowsListViewScroll.cs
- LongValidatorAttribute.cs
- hwndwrapper.cs
- ThicknessConverter.cs
- LocalizationComments.cs
- ChangeTracker.cs
- precedingsibling.cs
- StylusShape.cs
- Icon.cs
- DataContractSet.cs
- DocumentViewerBase.cs
- TimeSpanOrInfiniteConverter.cs
- X509Utils.cs
- ObjectRef.cs
- precedingquery.cs
- ContextBase.cs
- DataTableTypeConverter.cs
- FunctionDefinition.cs
- InitializerFacet.cs
- DataControlPagerLinkButton.cs
- BitmapVisualManager.cs
- DataGridViewCellValueEventArgs.cs
- ClientTargetCollection.cs
- StreamGeometryContext.cs
- SectionInput.cs
- RelAssertionDirectKeyIdentifierClause.cs
- ReachDocumentReferenceSerializerAsync.cs
- TabItemWrapperAutomationPeer.cs
- QueryableDataSourceView.cs
- WSFederationHttpSecurity.cs
- QilXmlWriter.cs
- StateMachineExecutionState.cs
- AppDomainShutdownMonitor.cs
- ExceptionHandlers.cs
- basevalidator.cs
- EnvelopedSignatureTransform.cs
- NamespaceList.cs
- DesignerMetadata.cs
- SystemIPInterfaceStatistics.cs
- SqlFunctionAttribute.cs
- BaseValidator.cs
- InputLanguageManager.cs
- QueueProcessor.cs
- SHA512Managed.cs
- HtmlInputFile.cs
- Source.cs
- ViewBox.cs
- DrawingGroup.cs
- TableAutomationPeer.cs
- CodeAttributeArgumentCollection.cs
- AuthenticatedStream.cs
- TreeViewImageKeyConverter.cs
- ConfigurationValidatorBase.cs
- PointCollectionConverter.cs
- XmlSerializerOperationBehavior.cs
- ThreadExceptionDialog.cs
- SizeConverter.cs
- ZipIOFileItemStream.cs
- RangeBase.cs
- SqlServer2KCompatibilityAnnotation.cs
- BindingCollectionElement.cs
- HttpCapabilitiesSectionHandler.cs
- EnumMember.cs
- IOThreadTimer.cs