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
- MDIControlStrip.cs
- SystemIPAddressInformation.cs
- DataGridViewControlCollection.cs
- StringAnimationBase.cs
- VSWCFServiceContractGenerator.cs
- RelationshipType.cs
- ImageUrlEditor.cs
- OpenTypeLayoutCache.cs
- ClaimTypes.cs
- UriSection.cs
- AssemblyResolver.cs
- x509utils.cs
- WindowsIPAddress.cs
- XmlSchemas.cs
- XamlLoadErrorInfo.cs
- BrowserCapabilitiesFactory.cs
- HttpServerUtilityWrapper.cs
- HyperLinkStyle.cs
- CodePageEncoding.cs
- CurrencyWrapper.cs
- OpenTypeLayoutCache.cs
- PopupControlService.cs
- WebFaultClientMessageInspector.cs
- StatusBarPanelClickEvent.cs
- XmlHierarchicalEnumerable.cs
- HashStream.cs
- ResourceReferenceKeyNotFoundException.cs
- WindowsGraphics2.cs
- CodeAttachEventStatement.cs
- FieldTemplateFactory.cs
- HtmlGenericControl.cs
- ManipulationLogic.cs
- ClientTarget.cs
- PeerUnsafeNativeMethods.cs
- SqlCacheDependencySection.cs
- ListBindableAttribute.cs
- LocalizableAttribute.cs
- UniqueConstraint.cs
- QilStrConcatenator.cs
- QueuePathDialog.cs
- FixedHighlight.cs
- PixelShader.cs
- ImportContext.cs
- FormViewDeleteEventArgs.cs
- DataBindEngine.cs
- RadioButtonPopupAdapter.cs
- CodeCatchClause.cs
- ProfileBuildProvider.cs
- HwndMouseInputProvider.cs
- ImplicitInputBrush.cs
- DependencyObject.cs
- SchemaNames.cs
- CollectionDataContract.cs
- Win32KeyboardDevice.cs
- SqlEnums.cs
- HttpServerProtocol.cs
- HttpListenerResponse.cs
- ParameterSubsegment.cs
- Mapping.cs
- DocumentScope.cs
- TextDecoration.cs
- ObjectDataSourceFilteringEventArgs.cs
- ConfigurationErrorsException.cs
- HttpDebugHandler.cs
- StringFunctions.cs
- ToolStripDropDownMenu.cs
- ChangeNode.cs
- StrongNameUtility.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- _SslStream.cs
- WebPartDisplayMode.cs
- MessageFormatterConverter.cs
- SafeTimerHandle.cs
- DragDrop.cs
- PrePrepareMethodAttribute.cs
- initElementDictionary.cs
- UmAlQuraCalendar.cs
- OptionalRstParameters.cs
- AttachmentCollection.cs
- FileCodeGroup.cs
- Application.cs
- DataSourceBooleanViewSchemaConverter.cs
- XslException.cs
- _DigestClient.cs
- CssStyleCollection.cs
- DrawingBrush.cs
- GridErrorDlg.cs
- RSAOAEPKeyExchangeFormatter.cs
- CheckBoxStandardAdapter.cs
- SqlCommandBuilder.cs
- ReflectionHelper.cs
- DataObjectFieldAttribute.cs
- SessionSwitchEventArgs.cs
- ObjectStateFormatter.cs
- ToolStripItemCollection.cs
- BinHexDecoder.cs
- RunInstallerAttribute.cs
- DbUpdateCommandTree.cs
- Line.cs
- CompletionCallbackWrapper.cs