Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / DocumentViewerBaseAutomationPeer.cs / 1 / DocumentViewerBaseAutomationPeer.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: DocumentViewerBaseAutomationPeer.cs // // Description: AutomationPeer associated with DocumentViewerBase. // //--------------------------------------------------------------------------- using System.Collections.Generic; // Listusing System.Windows.Controls.Primitives; // DocumentViewerBase using System.Windows.Documents; // IDocumentPaginatorSource namespace System.Windows.Automation.Peers { /// /// AutomationPeer associated with DocumentViewerBase. /// public class DocumentViewerBaseAutomationPeer : FrameworkElementAutomationPeer { ////// Constructor. /// /// Owner of the AutomationPeer. public DocumentViewerBaseAutomationPeer(DocumentViewerBase owner) : base(owner) { } ////// public override object GetPattern(PatternInterface patternInterface) { object returnValue = null; if (patternInterface == PatternInterface.Text) { // Make sure that Automation children are created. this.GetChildren(); // Re-expose TextPattern from hosted document. if (_documentPeer != null) { _documentPeer.EventsSource = this; returnValue = _documentPeer.GetPattern(patternInterface); } } return returnValue; } ////// /// ////// /// AutomationPeer associated with DocumentViewerBase returns an AutomationPeer /// for hosted Document and for elements in the style. /// protected override ListGetChildrenCore() { // Get children for all elements in the style. List children = base.GetChildrenCore(); // Add AutomationPeer associated with the document. // Make it the first child of the collection. AutomationPeer documentPeer = GetDocumentAutomationPeer(); if (_documentPeer != documentPeer) { if (_documentPeer != null) { _documentPeer.OnDisconnected(); } _documentPeer = documentPeer as DocumentAutomationPeer; } if (documentPeer != null) { if (children == null) { children = new List (); } children.Add(documentPeer); } return children; } /// /// protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Document; } ////// /// protected override string GetClassNameCore() { return "DocumentViewer"; } ////// /// Retrieves AutomationPeer for the document. /// ///private AutomationPeer GetDocumentAutomationPeer() { AutomationPeer documentPeer = null; IDocumentPaginatorSource document = ((DocumentViewerBase)Owner).Document; if (document != null) { if (document is UIElement) { documentPeer = UIElementAutomationPeer.CreatePeerForElement((UIElement)document); } else if (document is ContentElement) { documentPeer = ContentElementAutomationPeer.CreatePeerForElement((ContentElement)document); } } return documentPeer; } private DocumentAutomationPeer _documentPeer; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: DocumentViewerBaseAutomationPeer.cs // // Description: AutomationPeer associated with DocumentViewerBase. // //--------------------------------------------------------------------------- using System.Collections.Generic; // List using System.Windows.Controls.Primitives; // DocumentViewerBase using System.Windows.Documents; // IDocumentPaginatorSource namespace System.Windows.Automation.Peers { /// /// AutomationPeer associated with DocumentViewerBase. /// public class DocumentViewerBaseAutomationPeer : FrameworkElementAutomationPeer { ////// Constructor. /// /// Owner of the AutomationPeer. public DocumentViewerBaseAutomationPeer(DocumentViewerBase owner) : base(owner) { } ////// public override object GetPattern(PatternInterface patternInterface) { object returnValue = null; if (patternInterface == PatternInterface.Text) { // Make sure that Automation children are created. this.GetChildren(); // Re-expose TextPattern from hosted document. if (_documentPeer != null) { _documentPeer.EventsSource = this; returnValue = _documentPeer.GetPattern(patternInterface); } } return returnValue; } ////// /// ////// /// AutomationPeer associated with DocumentViewerBase returns an AutomationPeer /// for hosted Document and for elements in the style. /// protected override ListGetChildrenCore() { // Get children for all elements in the style. List children = base.GetChildrenCore(); // Add AutomationPeer associated with the document. // Make it the first child of the collection. AutomationPeer documentPeer = GetDocumentAutomationPeer(); if (_documentPeer != documentPeer) { if (_documentPeer != null) { _documentPeer.OnDisconnected(); } _documentPeer = documentPeer as DocumentAutomationPeer; } if (documentPeer != null) { if (children == null) { children = new List (); } children.Add(documentPeer); } return children; } /// /// protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Document; } ////// /// protected override string GetClassNameCore() { return "DocumentViewer"; } ////// /// Retrieves AutomationPeer for the document. /// ///private AutomationPeer GetDocumentAutomationPeer() { AutomationPeer documentPeer = null; IDocumentPaginatorSource document = ((DocumentViewerBase)Owner).Document; if (document != null) { if (document is UIElement) { documentPeer = UIElementAutomationPeer.CreatePeerForElement((UIElement)document); } else if (document is ContentElement) { documentPeer = ContentElementAutomationPeer.CreatePeerForElement((ContentElement)document); } } return documentPeer; } private DocumentAutomationPeer _documentPeer; } } // 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
- FrameworkTemplate.cs
- XmlSchemaAny.cs
- OrderedDictionary.cs
- ItemDragEvent.cs
- WSHttpSecurity.cs
- _ConnectionGroup.cs
- MeshGeometry3D.cs
- OrderedDictionaryStateHelper.cs
- ReliableDuplexSessionChannel.cs
- Avt.cs
- ValueProviderWrapper.cs
- HttpRuntime.cs
- CalendarTable.cs
- Tuple.cs
- TreeNode.cs
- CharStorage.cs
- DataError.cs
- MatrixKeyFrameCollection.cs
- SecurityContextCookieSerializer.cs
- BamlTreeUpdater.cs
- OnOperation.cs
- ImmutableCollection.cs
- AutomationTextAttribute.cs
- EnumBuilder.cs
- ProjectionCamera.cs
- Ops.cs
- ThumbAutomationPeer.cs
- CookieProtection.cs
- ButtonBase.cs
- LocatorPartList.cs
- CodeTypeDelegate.cs
- ASCIIEncoding.cs
- RuntimeWrappedException.cs
- SemanticResolver.cs
- HostExecutionContextManager.cs
- TerminatingOperationBehavior.cs
- Types.cs
- Currency.cs
- ViewManager.cs
- XmlnsPrefixAttribute.cs
- DefaultCompensation.cs
- UiaCoreTypesApi.cs
- CompressedStack.cs
- MsmqSecureHashAlgorithm.cs
- DiscoveryVersion.cs
- SemanticValue.cs
- OleAutBinder.cs
- SafeViewOfFileHandle.cs
- XMLSyntaxException.cs
- ScrollBarRenderer.cs
- XPathScanner.cs
- LassoHelper.cs
- Timer.cs
- FormViewCommandEventArgs.cs
- SmiEventSink_DeferedProcessing.cs
- SendingRequestEventArgs.cs
- URLString.cs
- OdbcUtils.cs
- FrameSecurityDescriptor.cs
- Attribute.cs
- MailBnfHelper.cs
- WsatTransactionInfo.cs
- SmiRequestExecutor.cs
- QueryCursorEventArgs.cs
- ObjectPersistData.cs
- DataBoundLiteralControl.cs
- StylusTip.cs
- TextModifierScope.cs
- FacetValues.cs
- SeverityFilter.cs
- RegexCaptureCollection.cs
- DPAPIProtectedConfigurationProvider.cs
- controlskin.cs
- Relationship.cs
- SafeCoTaskMem.cs
- CodeNamespaceImport.cs
- XNodeNavigator.cs
- OwnerDrawPropertyBag.cs
- TextElementEnumerator.cs
- BinarySerializer.cs
- DbConnectionInternal.cs
- TableParagraph.cs
- MutexSecurity.cs
- DetailsViewRowCollection.cs
- MouseActionValueSerializer.cs
- EntityContainerEntitySetDefiningQuery.cs
- EmptyEnumerable.cs
- AutoResetEvent.cs
- VisualSerializer.cs
- ArrayElementGridEntry.cs
- SrgsRuleRef.cs
- PriorityItem.cs
- AlgoModule.cs
- XsltSettings.cs
- XomlCompilerHelpers.cs
- TextCollapsingProperties.cs
- PersistenceTypeAttribute.cs
- CompleteWizardStep.cs
- ProjectionAnalyzer.cs
- securitycriticaldataformultiplegetandset.cs