Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / UIAutomation / UIAutomationClient / System / Windows / Automation / InvokePattern.cs / 1305600 / InvokePattern.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Client-side wrapper for Invoke Pattern // // History: // 06/23/2003 : BrendanM Ported to WCP // //--------------------------------------------------------------------------- using System; using System.Windows.Automation.Provider; using MS.Internal.Automation; namespace System.Windows.Automation { ////// Represents objects that have a single, unambiguous, action associated with them. /// /// Examples of UI that implments this includes: /// Push buttons /// Hyperlinks /// Menu items /// Radio buttons /// Check boxes /// #if (INTERNAL_COMPILE) internal class InvokePattern: BasePattern #else public class InvokePattern: BasePattern #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors private InvokePattern(AutomationElement el, SafePatternHandle hPattern) : base(el, hPattern) { _hPattern = hPattern; } #endregion Constructors //------------------------------------------------------ // // Public Constants / Readonly Fields // //----------------------------------------------------- #region Public Constants and Readonly Fields ///Invokable pattern public static readonly AutomationPattern Pattern = InvokePatternIdentifiers.Pattern; ///Event ID: Invoked - event used to watch for Invokable pattern Invoked events public static readonly AutomationEvent InvokedEvent = InvokePatternIdentifiers.InvokedEvent; #endregion Public Constants and Readonly Fields //------------------------------------------------------ // // Public Methods // //------------------------------------------------------ #region Public Methods ////// Request that the control initiate its action. /// Should return immediately without blocking. /// There is no way to determine what happened, when it happend, or whether /// anything happened at all. /// /// ////// This API does not work inside the secure execution environment. /// public void Invoke() { UiaCoreApi.InvokePattern_Invoke(_hPattern); } #endregion Public Methods //----------------------------------------------------- // // Public Properties // //------------------------------------------------------ #region Public Properties // No properties #endregion Public Properties //----------------------------------------------------- // // Internal Methods // //----------------------------------------------------- #region Internal Methods internal static object Wrap(AutomationElement el, SafePatternHandle hPattern, bool cached) { return new InvokePattern(el, hPattern); } #endregion Internal Methods //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private SafePatternHandle _hPattern; #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
- StylusButtonEventArgs.cs
- Evidence.cs
- MouseCaptureWithinProperty.cs
- RuleInfoComparer.cs
- CommandLibraryHelper.cs
- DataGridViewTextBoxEditingControl.cs
- SmtpFailedRecipientsException.cs
- ParameterEditorUserControl.cs
- SessionStateContainer.cs
- TableCellAutomationPeer.cs
- LinkConverter.cs
- SectionUpdates.cs
- XamlBrushSerializer.cs
- AppDomainResourcePerfCounters.cs
- XhtmlMobileTextWriter.cs
- ObjectListCommandsPage.cs
- IntSecurity.cs
- CommonDialog.cs
- SingleConverter.cs
- SchemaTypeEmitter.cs
- DataGridViewTopLeftHeaderCell.cs
- GridView.cs
- HashMembershipCondition.cs
- HttpHandlerAction.cs
- AuthenticationConfig.cs
- InvalidCommandTreeException.cs
- Delegate.cs
- SocketException.cs
- OrderByExpression.cs
- QilTernary.cs
- RecognizedAudio.cs
- BordersPage.cs
- OptimizerPatterns.cs
- ToolStripDesignerAvailabilityAttribute.cs
- PackUriHelper.cs
- DynamicResourceExtensionConverter.cs
- InstanceDescriptor.cs
- RoleManagerEventArgs.cs
- DocumentXmlWriter.cs
- XmlTypeMapping.cs
- Pens.cs
- WebRequestModuleElementCollection.cs
- WebPartZone.cs
- MdiWindowListItemConverter.cs
- DeviceFiltersSection.cs
- Lookup.cs
- ResourcePermissionBaseEntry.cs
- BindingList.cs
- Vector3DConverter.cs
- PathTooLongException.cs
- TypeUtil.cs
- MdiWindowListItemConverter.cs
- Int32CAMarshaler.cs
- PathHelper.cs
- Part.cs
- WebBrowserNavigatedEventHandler.cs
- DesignerActionUI.cs
- XmlHierarchicalDataSourceView.cs
- WebServiceHandlerFactory.cs
- TextServicesDisplayAttribute.cs
- SettingsBase.cs
- UriParserTemplates.cs
- RightsManagementEncryptedStream.cs
- WpfKnownType.cs
- LayoutUtils.cs
- TraversalRequest.cs
- GorillaCodec.cs
- SQLDoubleStorage.cs
- FormsAuthenticationConfiguration.cs
- ISAPIApplicationHost.cs
- OracleDataReader.cs
- RequestCacheManager.cs
- SelectionGlyph.cs
- AsymmetricSignatureDeformatter.cs
- TransactionProtocol.cs
- ListBoxItemAutomationPeer.cs
- CodeActivity.cs
- CommandHelper.cs
- DataList.cs
- PolicyException.cs
- MultiDataTrigger.cs
- ClientTargetCollection.cs
- Misc.cs
- Formatter.cs
- DataControlCommands.cs
- LoginView.cs
- HttpCapabilitiesSectionHandler.cs
- TextEditorMouse.cs
- HashStream.cs
- CachedBitmap.cs
- ConfigurationSectionGroupCollection.cs
- EventProviderTraceListener.cs
- SqlCacheDependency.cs
- BookmarkScopeInfo.cs
- DataObjectEventArgs.cs
- DataTableMapping.cs
- Vector.cs
- BrowserDefinition.cs
- QueryContinueDragEventArgs.cs
- Util.cs