Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / ValidationErrorEventArgs.cs / 1305600 / ValidationErrorEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // // // // Description: // EventArgs for ValidationError event. // // See specs at http://avalon/connecteddata/Specs/Validation.mht // // History: // 5/13/2004 mharper: 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
- StorageEndPropertyMapping.cs
- DbConnectionInternal.cs
- FormatConvertedBitmap.cs
- SQLGuid.cs
- TextOptions.cs
- XPathScanner.cs
- FolderBrowserDialog.cs
- UnsafeNativeMethods.cs
- RoleGroup.cs
- ButtonFlatAdapter.cs
- GPPOINT.cs
- WeakEventTable.cs
- UnknownBitmapEncoder.cs
- Soap.cs
- WebSysDescriptionAttribute.cs
- LinqDataSourceView.cs
- Function.cs
- ContentDesigner.cs
- HierarchicalDataBoundControlAdapter.cs
- ObjectDataSourceEventArgs.cs
- PolygonHotSpot.cs
- XamlTypeMapper.cs
- BitmapEffectInputConnector.cs
- XmlObjectSerializerContext.cs
- ItemType.cs
- CrossSiteScriptingValidation.cs
- CheckedPointers.cs
- TextSpanModifier.cs
- ResourceKey.cs
- XmlReflectionMember.cs
- SatelliteContractVersionAttribute.cs
- TextContainerChangedEventArgs.cs
- DataGridHeaderBorder.cs
- SqlWriter.cs
- Rotation3D.cs
- FixedDSBuilder.cs
- FamilyCollection.cs
- FlagsAttribute.cs
- EnumMember.cs
- URLAttribute.cs
- VBCodeProvider.cs
- FormatStringEditor.cs
- ValueTypeFixupInfo.cs
- ButtonRenderer.cs
- DirectoryNotFoundException.cs
- TrackBar.cs
- ReadOnlyState.cs
- ToolStripTextBox.cs
- AttachedAnnotation.cs
- UserPersonalizationStateInfo.cs
- MaskInputRejectedEventArgs.cs
- ClonableStack.cs
- CodeTypeMemberCollection.cs
- ApplicationCommands.cs
- SoapFault.cs
- GorillaCodec.cs
- SettingsAttributeDictionary.cs
- CodeAttributeArgument.cs
- Stylesheet.cs
- ParamArrayAttribute.cs
- ListViewCommandEventArgs.cs
- SoapTypeAttribute.cs
- Viewport2DVisual3D.cs
- MsmqOutputMessage.cs
- XmlSerializerFormatAttribute.cs
- RSAPKCS1SignatureDeformatter.cs
- LinkDescriptor.cs
- GcHandle.cs
- StructuralType.cs
- DockEditor.cs
- StringAnimationBase.cs
- StringComparer.cs
- AssemblyNameProxy.cs
- HtmlObjectListAdapter.cs
- DataTableClearEvent.cs
- GridViewItemAutomationPeer.cs
- XPathDescendantIterator.cs
- PassportAuthentication.cs
- SolidColorBrush.cs
- DesignColumnCollection.cs
- ConfigurationSectionGroup.cs
- Point4DConverter.cs
- InfoCardAsymmetricCrypto.cs
- XmlQualifiedName.cs
- FixedSOMContainer.cs
- PenLineCapValidation.cs
- RTLAwareMessageBox.cs
- ToolStripPanelRow.cs
- RealizationContext.cs
- UniqueIdentifierService.cs
- XamlReaderHelper.cs
- RefType.cs
- HttpProfileBase.cs
- ClientConfigurationSystem.cs
- PerformanceCounterLib.cs
- SimpleBitVector32.cs
- PropertyBuilder.cs
- DirectoryRedirect.cs
- SystemColorTracker.cs
- DetailsViewPageEventArgs.cs