Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / AccessibleTech / longhorn / Automation / UIAutomationClient / System / Windows / Automation / InvokePattern.cs / 1 / InvokePattern.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Client-side wrapper for Invoke Pattern // // History: // 06/23/2003 : [....] 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
- SourceSwitch.cs
- MimeTypeMapper.cs
- ListViewItem.cs
- InkCanvasInnerCanvas.cs
- ImageFormatConverter.cs
- Part.cs
- DbMetaDataColumnNames.cs
- ToolboxDataAttribute.cs
- DataGridCaption.cs
- AsymmetricSignatureFormatter.cs
- DisableDpiAwarenessAttribute.cs
- TypeListConverter.cs
- ReadOnlyTernaryTree.cs
- ComponentChangingEvent.cs
- ThreadSafeMessageFilterTable.cs
- ITreeGenerator.cs
- FormViewCommandEventArgs.cs
- WpfPayload.cs
- StylusPointPropertyInfoDefaults.cs
- OperationFormatStyle.cs
- FontStyle.cs
- Propagator.JoinPropagator.cs
- CompilationRelaxations.cs
- FormConverter.cs
- SyncMethodInvoker.cs
- DelegatingTypeDescriptionProvider.cs
- TableColumnCollection.cs
- GACIdentityPermission.cs
- SecurityProtocolFactory.cs
- DelegatingConfigHost.cs
- ParserContext.cs
- RadioButtonList.cs
- WindowInteractionStateTracker.cs
- SingleResultAttribute.cs
- FastEncoderWindow.cs
- QueryAccessibilityHelpEvent.cs
- FilterableData.cs
- WebPartEditVerb.cs
- VirtualDirectoryMappingCollection.cs
- Tuple.cs
- OperatingSystem.cs
- LocalBuilder.cs
- CounterCreationData.cs
- IUnknownConstantAttribute.cs
- BitmapMetadata.cs
- CodeTypeConstructor.cs
- OleDbError.cs
- SynchronizedCollection.cs
- HitTestWithPointDrawingContextWalker.cs
- SurrogateEncoder.cs
- DefaultPrintController.cs
- CodeMemberMethod.cs
- ConstraintCollection.cs
- FreezableCollection.cs
- ObjectItemAssemblyLoader.cs
- TitleStyle.cs
- ExternalFile.cs
- XmlSchemaInclude.cs
- WorkerRequest.cs
- MenuItemBindingCollection.cs
- _SafeNetHandles.cs
- CodeIndexerExpression.cs
- validationstate.cs
- FrameSecurityDescriptor.cs
- HtmlTextArea.cs
- GeometryCollection.cs
- COM2EnumConverter.cs
- BinaryFormatter.cs
- XPathPatternParser.cs
- ActivityCodeDomSerializationManager.cs
- RelatedPropertyManager.cs
- PopOutPanel.cs
- PackageStore.cs
- RSAProtectedConfigurationProvider.cs
- COM2IProvidePropertyBuilderHandler.cs
- PenThread.cs
- MissingFieldException.cs
- SendReply.cs
- httpapplicationstate.cs
- InstallerTypeAttribute.cs
- ProtocolViolationException.cs
- KeyConverter.cs
- DBParameter.cs
- TypedTableHandler.cs
- RemoteCryptoTokenProvider.cs
- MenuItemCollection.cs
- DesignerGenericWebPart.cs
- GridViewDeleteEventArgs.cs
- DeferredRunTextReference.cs
- EditorOptionAttribute.cs
- IndicCharClassifier.cs
- HandledMouseEvent.cs
- securitymgrsite.cs
- AutomationPattern.cs
- TreeChangeInfo.cs
- _RequestCacheProtocol.cs
- PageSettings.cs
- SQLInt64Storage.cs
- PlainXmlSerializer.cs
- FlowDocumentScrollViewerAutomationPeer.cs