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
- MD5Cng.cs
- BooleanSwitch.cs
- DataRowIndexBuffer.cs
- CollectionBuilder.cs
- FunctionImportMapping.cs
- DataGridViewControlCollection.cs
- DeadCharTextComposition.cs
- CodeComment.cs
- String.cs
- CompilerWrapper.cs
- ThrowHelper.cs
- EditorZoneBase.cs
- ToolBar.cs
- AsyncOperationContext.cs
- DeflateStream.cs
- PropertyDescriptorGridEntry.cs
- ZipIOLocalFileDataDescriptor.cs
- Timer.cs
- XmlQueryRuntime.cs
- FlowDocumentScrollViewer.cs
- TableLayoutPanelResizeGlyph.cs
- CodeRegionDirective.cs
- SafeWaitHandle.cs
- ConfigXmlAttribute.cs
- Error.cs
- HttpGetClientProtocol.cs
- ChtmlTextWriter.cs
- XmlObjectSerializerWriteContext.cs
- ReflectionUtil.cs
- EntityCommandCompilationException.cs
- PropertyInfo.cs
- OleServicesContext.cs
- AssertFilter.cs
- BamlResourceDeserializer.cs
- PageFunction.cs
- BooleanExpr.cs
- MessageQueueConverter.cs
- SqlDataSourceConfigureSortForm.cs
- XmlDataSourceView.cs
- SequenceRangeCollection.cs
- FileUpload.cs
- WpfMemberInvoker.cs
- PointConverter.cs
- DataBinder.cs
- EntityViewGenerationAttribute.cs
- DiscreteKeyFrames.cs
- StylusCaptureWithinProperty.cs
- ProtocolInformationReader.cs
- Rectangle.cs
- SimplePropertyEntry.cs
- InvalidateEvent.cs
- RangeValidator.cs
- RemoteWebConfigurationHost.cs
- DbProviderFactory.cs
- TextPatternIdentifiers.cs
- ForwardPositionQuery.cs
- DataFieldConverter.cs
- RunInstallerAttribute.cs
- BezierSegment.cs
- KeyValueConfigurationElement.cs
- AuthenticationModuleElementCollection.cs
- UpdateProgress.cs
- GridViewColumnCollectionChangedEventArgs.cs
- KerberosTicketHashIdentifierClause.cs
- MessageQueue.cs
- DbConnectionStringCommon.cs
- ReadOnlyDictionary.cs
- FontFamily.cs
- DrawingGroup.cs
- RemotingException.cs
- CheckedListBox.cs
- ContainerAction.cs
- SequentialActivityDesigner.cs
- ResXResourceSet.cs
- DataKeyPropertyAttribute.cs
- LogArchiveSnapshot.cs
- TrackingLocation.cs
- InitializerFacet.cs
- X509ChainPolicy.cs
- AuthorizationRule.cs
- ApplicationException.cs
- DataGridViewCellPaintingEventArgs.cs
- CatalogPart.cs
- HttpResponse.cs
- ContextDataSource.cs
- OleDbEnumerator.cs
- ConnectionPoint.cs
- ListViewItemMouseHoverEvent.cs
- itemelement.cs
- FrameAutomationPeer.cs
- CapabilitiesPattern.cs
- PerformanceCounterCategory.cs
- SessionEndingEventArgs.cs
- TypeBuilderInstantiation.cs
- Help.cs
- columnmapfactory.cs
- SQLBinaryStorage.cs
- Separator.cs
- FeatureManager.cs
- DelegateTypeInfo.cs