Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Controls / ValidationErrorEventArgs.cs / 1 / ValidationErrorEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // // // // Description: // EventArgs for ValidationError event. // // See specs at [....]/connecteddata/Specs/Validation.mht // // History: // 5/13/2004 [....]: created. // //--------------------------------------------------------------------------- using System; using System.Windows; using MS.Internal; namespace System.Windows.Controls { ///Describes if a validation error has been added or cleared /// public enum ValidationErrorEventAction { ///A new ValidationError has been detected. Added, ///An existing ValidationError has been cleared. Removed, } ////// EventArgs for ValidationError event. /// public class ValidationErrorEventArgs : RoutedEventArgs { ////// Constructor /// internal ValidationErrorEventArgs(ValidationError validationError, ValidationErrorEventAction action) { Invariant.Assert(validationError != null); RoutedEvent = Validation.ErrorEvent; _validationError = validationError; _action = action; } ////// The ValidationError that caused this ValidationErrorEvent to /// be raised. /// public ValidationError Error { get { return _validationError; } } ////// Action indicates whether the public ValidationErrorEventAction Action { get { return _action; } } ///is a new error /// or a previous error that has now been cleared. /// /// The mechanism used to call the type-specific handler on the /// target. /// /// /// The generic handler to call in a type-specific way. /// /// /// The target to call the handler on. /// protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { EventHandlerhandler = (EventHandler ) genericHandler; handler(genericTarget, this); } private ValidationError _validationError; private ValidationErrorEventAction _action; } } // 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
- DataGridHeaderBorder.cs
- ExpressionLexer.cs
- SiteOfOriginPart.cs
- AdRotator.cs
- contentDescriptor.cs
- MetadataCollection.cs
- MailAddress.cs
- TextBoxBase.cs
- Exceptions.cs
- MessageProtectionOrder.cs
- ObjectAnimationUsingKeyFrames.cs
- TaiwanLunisolarCalendar.cs
- UriParserTemplates.cs
- RequiredFieldValidator.cs
- ImageCodecInfo.cs
- StreamBodyWriter.cs
- GestureRecognizer.cs
- sapiproxy.cs
- WebPartMinimizeVerb.cs
- TextFindEngine.cs
- FilteredXmlReader.cs
- NullableConverter.cs
- ProcessHost.cs
- NumericUpDownAccelerationCollection.cs
- ControlParameter.cs
- SaveWorkflowAsyncResult.cs
- SafeNativeMethods.cs
- KernelTypeValidation.cs
- WinFormsComponentEditor.cs
- TypeForwardedToAttribute.cs
- InstanceData.cs
- _NetworkingPerfCounters.cs
- PackagePartCollection.cs
- RangeContentEnumerator.cs
- PropertyMetadata.cs
- LabelDesigner.cs
- ElementHostPropertyMap.cs
- MobileRedirect.cs
- Point3DValueSerializer.cs
- SrgsText.cs
- TimeSpanOrInfiniteConverter.cs
- MaskDesignerDialog.cs
- MenuItem.cs
- Activity.cs
- DateTimeFormat.cs
- CatalogPartCollection.cs
- WCFBuildProvider.cs
- UMPAttributes.cs
- HierarchicalDataSourceControl.cs
- CodeConstructor.cs
- URLString.cs
- TextServicesCompartment.cs
- PaintValueEventArgs.cs
- ExecutorLocksHeldException.cs
- Point4DValueSerializer.cs
- TableLayout.cs
- List.cs
- FixedElement.cs
- QueryReaderSettings.cs
- QueryAccessibilityHelpEvent.cs
- MachineKeyConverter.cs
- Regex.cs
- SBCSCodePageEncoding.cs
- XmlTypeAttribute.cs
- SerializationInfoEnumerator.cs
- XmlRawWriter.cs
- RectIndependentAnimationStorage.cs
- CategoryNameCollection.cs
- FactoryGenerator.cs
- MobileControlsSectionHandler.cs
- StringValidator.cs
- RegexParser.cs
- HttpWebRequest.cs
- RectAnimation.cs
- FormParameter.cs
- OdbcPermission.cs
- PreviewPrintController.cs
- StringBuilder.cs
- InstanceLockLostException.cs
- CloseSequence.cs
- RSAPKCS1KeyExchangeFormatter.cs
- unsafeIndexingFilterStream.cs
- TypefaceCollection.cs
- ColorKeyFrameCollection.cs
- ReaderWriterLock.cs
- ProcessThreadCollection.cs
- glyphs.cs
- StateMachineSubscriptionManager.cs
- MetadataItemEmitter.cs
- InstanceHandleReference.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- DataFormats.cs
- DropDownHolder.cs
- AssemblySettingAttributes.cs
- DataGridViewLinkColumn.cs
- PublisherMembershipCondition.cs
- RawStylusInput.cs
- PointAnimationClockResource.cs
- MasterPageBuildProvider.cs
- SiteMapPath.cs