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
- XPathException.cs
- EntityExpressionVisitor.cs
- DetailsViewInsertedEventArgs.cs
- DoWorkEventArgs.cs
- RightsManagementEncryptionTransform.cs
- PropertyGroupDescription.cs
- WpfGeneratedKnownProperties.cs
- SHA384Managed.cs
- RewritingProcessor.cs
- SQLMoney.cs
- BufferedGraphics.cs
- ResourceCodeDomSerializer.cs
- DoubleAnimationClockResource.cs
- SHA384CryptoServiceProvider.cs
- ProfileManager.cs
- ListItemParagraph.cs
- ConsoleTraceListener.cs
- CodeSnippetStatement.cs
- WebPartZoneBase.cs
- PersonalizablePropertyEntry.cs
- SafeJobHandle.cs
- XslAstAnalyzer.cs
- ServerValidateEventArgs.cs
- Message.cs
- NamespaceCollection.cs
- ProxyElement.cs
- SnapshotChangeTrackingStrategy.cs
- HyperLinkField.cs
- StringBuilder.cs
- WebPartCollection.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- PagesSection.cs
- File.cs
- XmlSignatureManifest.cs
- TrackBarRenderer.cs
- SystemTcpConnection.cs
- ValidationRule.cs
- KeyEvent.cs
- DbProviderServices.cs
- SoapExtensionImporter.cs
- DataGridCellInfo.cs
- DLinqColumnProvider.cs
- RegexCompilationInfo.cs
- PatternMatcher.cs
- Cursors.cs
- WinEventQueueItem.cs
- CustomValidator.cs
- UdpDiscoveryMessageFilter.cs
- AlignmentYValidation.cs
- SimpleMailWebEventProvider.cs
- UpdatableWrapper.cs
- MetadataArtifactLoaderFile.cs
- TextEditorDragDrop.cs
- NameObjectCollectionBase.cs
- ScriptManager.cs
- ToolZone.cs
- SubordinateTransaction.cs
- HelpProvider.cs
- WhitespaceRuleReader.cs
- ActivitySurrogateSelector.cs
- Lease.cs
- ClientSideQueueItem.cs
- NamespaceExpr.cs
- EdmConstants.cs
- HtmlEmptyTagControlBuilder.cs
- SafeHandle.cs
- formatter.cs
- XslCompiledTransform.cs
- DocumentOrderQuery.cs
- WorkflowDesigner.cs
- ListControl.cs
- BufferModeSettings.cs
- TableStyle.cs
- FormatSettings.cs
- OleDbPropertySetGuid.cs
- ButtonFieldBase.cs
- DateTimeFormat.cs
- infer.cs
- AutoScrollExpandMessageFilter.cs
- SqlVersion.cs
- QilStrConcatenator.cs
- BuildProviderUtils.cs
- SoapAttributeAttribute.cs
- HtmlInputReset.cs
- DateTimeValueSerializerContext.cs
- Set.cs
- ForeignKeyFactory.cs
- StatusBarPanelClickEvent.cs
- Polyline.cs
- Polygon.cs
- VectorAnimationBase.cs
- DataGridRowHeaderAutomationPeer.cs
- RegexCompiler.cs
- FormParameter.cs
- Effect.cs
- InputReport.cs
- ColumnMapVisitor.cs
- HotSpotCollectionEditor.cs
- XsltInput.cs
- BrowserCapabilitiesFactory.cs