Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / Automation / Peers / DocumentViewerAutomationPeer.cs / 1 / DocumentViewerAutomationPeer.cs
using System; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Windows; using System.Windows.Automation.Provider; using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Documents; using System.Windows.Interop; using System.Windows.Media; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { ////// AutomationPeer associated with DocumentViewer /// public class DocumentViewerAutomationPeer : DocumentViewerBaseAutomationPeer { ////// Constructor /// /// Owner of the AutomationPeer. public DocumentViewerAutomationPeer(DocumentViewer owner) : base(owner) { } ////// override protected string GetClassNameCore() { return "DocumentViewer"; } ////// /// override public object GetPattern(PatternInterface patternInterface) { object returnValue = null; // Check if provided patternInterface is for Scroll, which is all // that is currently exposed. if (patternInterface == PatternInterface.Scroll) { // Get a reference to DocumentViewer's ScrollViewer DocumentViewer owner = (DocumentViewer)Owner; if (owner.ScrollViewer != null) { // Get a reference to ScrollViewer's AutomationPeer. AutomationPeer scrollPeer = UIElementAutomationPeer.CreatePeerForElement(owner.ScrollViewer); if (scrollPeer != null && scrollPeer is IScrollProvider) { scrollPeer.EventsSource = this; returnValue = scrollPeer; } } } else { returnValue = base.GetPattern(patternInterface); } return returnValue; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Windows; using System.Windows.Automation.Provider; using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Documents; using System.Windows.Interop; using System.Windows.Media; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { ////// /// AutomationPeer associated with DocumentViewer /// public class DocumentViewerAutomationPeer : DocumentViewerBaseAutomationPeer { ////// Constructor /// /// Owner of the AutomationPeer. public DocumentViewerAutomationPeer(DocumentViewer owner) : base(owner) { } ////// override protected string GetClassNameCore() { return "DocumentViewer"; } ////// /// override public object GetPattern(PatternInterface patternInterface) { object returnValue = null; // Check if provided patternInterface is for Scroll, which is all // that is currently exposed. if (patternInterface == PatternInterface.Scroll) { // Get a reference to DocumentViewer's ScrollViewer DocumentViewer owner = (DocumentViewer)Owner; if (owner.ScrollViewer != null) { // Get a reference to ScrollViewer's AutomationPeer. AutomationPeer scrollPeer = UIElementAutomationPeer.CreatePeerForElement(owner.ScrollViewer); if (scrollPeer != null && scrollPeer is IScrollProvider) { scrollPeer.EventsSource = this; returnValue = scrollPeer; } } } else { returnValue = base.GetPattern(patternInterface); } return returnValue; } } } // 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
- ServiceXNameTypeConverter.cs
- HyperlinkAutomationPeer.cs
- HttpContext.cs
- LineBreak.cs
- MimeTypeMapper.cs
- TextParagraph.cs
- GenericRootAutomationPeer.cs
- SymLanguageType.cs
- RawStylusInputCustomData.cs
- NamedObject.cs
- NgenServicingAttributes.cs
- UrlPropertyAttribute.cs
- VarInfo.cs
- ApplicationServicesHostFactory.cs
- XmlSchemaSubstitutionGroup.cs
- DataGridTablesFactory.cs
- ClientApiGenerator.cs
- WindowsEditBoxRange.cs
- RequestQueryParser.cs
- Table.cs
- SchemaEntity.cs
- XmlReflectionImporter.cs
- StaticDataManager.cs
- SamlAttributeStatement.cs
- TreeNode.cs
- Transform3D.cs
- CFGGrammar.cs
- EmptyControlCollection.cs
- CounterCreationDataCollection.cs
- HttpContextServiceHost.cs
- nulltextnavigator.cs
- EditCommandColumn.cs
- TypeNameHelper.cs
- SQLInt64Storage.cs
- MaskedTextProvider.cs
- DispatcherTimer.cs
- DependentList.cs
- ToolboxComponentsCreatedEventArgs.cs
- TypeHelpers.cs
- HuffModule.cs
- XmlSiteMapProvider.cs
- TextParentUndoUnit.cs
- CalculatedColumn.cs
- SpellerStatusTable.cs
- GridToolTip.cs
- ConfigXmlCDataSection.cs
- LinqExpressionNormalizer.cs
- UrlMapping.cs
- SafeNativeMethods.cs
- TypefaceMetricsCache.cs
- QueryAccessibilityHelpEvent.cs
- Misc.cs
- MonthChangedEventArgs.cs
- ValueTypeIndexerReference.cs
- NameSpaceEvent.cs
- InvokeProviderWrapper.cs
- RuntimeHelpers.cs
- BrowserCapabilitiesCodeGenerator.cs
- WaitHandleCannotBeOpenedException.cs
- DataObjectSettingDataEventArgs.cs
- MinimizableAttributeTypeConverter.cs
- ArrangedElementCollection.cs
- TreePrinter.cs
- DoubleAnimation.cs
- TCPListener.cs
- CompositionTarget.cs
- TreeViewImageIndexConverter.cs
- GenericEnumerator.cs
- Polyline.cs
- Divide.cs
- EntitySet.cs
- RIPEMD160Managed.cs
- MessageEnumerator.cs
- EventDescriptorCollection.cs
- TableRowGroup.cs
- SqlServer2KCompatibilityAnnotation.cs
- HttpCachePolicy.cs
- DesignerHierarchicalDataSourceView.cs
- StackOverflowException.cs
- ServiceOperationHelpers.cs
- ModelPerspective.cs
- SuppressMergeCheckAttribute.cs
- Parameter.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- Journaling.cs
- DataGridTextBox.cs
- WebPartExportVerb.cs
- HostedNamedPipeTransportManager.cs
- ColumnMapCopier.cs
- Ref.cs
- SqlUdtInfo.cs
- StyleModeStack.cs
- SchemaElementDecl.cs
- GlyphInfoList.cs
- BitmapEffect.cs
- Converter.cs
- WindowsStatic.cs
- ColumnTypeConverter.cs
- CodeCommentStatementCollection.cs
- MouseEventArgs.cs