Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / AccessibleTech / longhorn / Automation / UIAutomationTypes / System / Windows / Automation / AutomationEventArgs.cs / 1 / AutomationEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Pattern or custom event args class // // History: // 06/17/2003 : [....] Ported to WCP // //--------------------------------------------------------------------------- using System; using System.Windows.Automation; namespace System.Windows.Automation { ////// Delegate to handle AutomationEvents /// #if (INTERNAL_COMPILE) internal delegate void AutomationEventHandler( object sender, AutomationEventArgs e ); #else public delegate void AutomationEventHandler( object sender, AutomationEventArgs e ); #endif ////// Pattern or custom event args class /// #if (INTERNAL_COMPILE) internal class AutomationEventArgs: EventArgs #else public class AutomationEventArgs: EventArgs #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Constructor for pattern or custom event args. /// /// Indicates which event this instance represents. public AutomationEventArgs(AutomationEvent eventId ) { _eventId = eventId; } #endregion Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties ////// EventId indicating which event this instance represents. /// public AutomationEvent EventId { get { return _eventId; } } #endregion Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private AutomationEvent _eventId; #endregion Private Fields } } // 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
- FixedTextSelectionProcessor.cs
- ChildrenQuery.cs
- InvalidPropValue.cs
- DataColumnPropertyDescriptor.cs
- XmlSchemaSimpleTypeList.cs
- VisualStates.cs
- StrongTypingException.cs
- SplitContainer.cs
- DoubleAnimationClockResource.cs
- SafeArrayTypeMismatchException.cs
- MsmqOutputChannel.cs
- DbBuffer.cs
- Schedule.cs
- SoapExtension.cs
- DbInsertCommandTree.cs
- Configuration.cs
- KnownIds.cs
- XhtmlTextWriter.cs
- ELinqQueryState.cs
- XmlNamespaceManager.cs
- BindingUtils.cs
- ObjectTag.cs
- MenuAutoFormat.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- XmlSecureResolver.cs
- VectorAnimationBase.cs
- ContentDisposition.cs
- HttpCacheVaryByContentEncodings.cs
- EmissiveMaterial.cs
- smtppermission.cs
- EntityViewGenerationAttribute.cs
- MemberPath.cs
- OdbcCommand.cs
- EntityCommandCompilationException.cs
- MimeAnyImporter.cs
- BinaryWriter.cs
- PenThread.cs
- ScrollBar.cs
- Exceptions.cs
- RadioButtonList.cs
- PersonalizableTypeEntry.cs
- httpserverutility.cs
- KeyedCollection.cs
- XmlCDATASection.cs
- TransformerInfo.cs
- CompiledXpathExpr.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- CssClassPropertyAttribute.cs
- Debug.cs
- FactoryRecord.cs
- StartFileNameEditor.cs
- OrderingInfo.cs
- KnownTypeDataContractResolver.cs
- PersistChildrenAttribute.cs
- DbModificationClause.cs
- Pair.cs
- X509Chain.cs
- XmlWrappingReader.cs
- SqlColumnizer.cs
- CommonRemoteMemoryBlock.cs
- Container.cs
- ToolboxBitmapAttribute.cs
- AssemblyAttributes.cs
- isolationinterop.cs
- StringToken.cs
- OpCellTreeNode.cs
- EntityViewGenerationAttribute.cs
- OleDbCommand.cs
- SyndicationFeed.cs
- SHA384.cs
- ActivityBindForm.Designer.cs
- DataObjectCopyingEventArgs.cs
- MetadataItemEmitter.cs
- ButtonFlatAdapter.cs
- PageClientProxyGenerator.cs
- Parsers.cs
- ManifestResourceInfo.cs
- EventArgs.cs
- SoapInteropTypes.cs
- COM2PropertyPageUITypeConverter.cs
- HttpModulesSection.cs
- TCPClient.cs
- StylusPointPropertyInfo.cs
- SQLBytesStorage.cs
- FloatUtil.cs
- SmiEventSink.cs
- Util.cs
- OleDbPermission.cs
- FrameworkObject.cs
- StreamResourceInfo.cs
- EditorOptionAttribute.cs
- LabelEditEvent.cs
- XmlSchemaComplexContentExtension.cs
- GroupPartitionExpr.cs
- AuthenticationService.cs
- SizeLimitedCache.cs
- ByteStack.cs
- InputLangChangeRequestEvent.cs
- TabControlAutomationPeer.cs
- ApplicationServiceManager.cs