Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / DocumentPageViewAutomationPeer.cs / 1 / DocumentPageViewAutomationPeer.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: DocumentPageViewAutomationPeer.cs // // Description: AutomationPeer associated with DocumentPageView. // //--------------------------------------------------------------------------- using System.Collections.Generic; // Listusing System.Globalization; // CultureInfo using System.Windows.Controls; // DocumentViewer using System.Windows.Controls.Primitives; // DocumentPageView namespace System.Windows.Automation.Peers { /// /// AutomationPeer associated with DocumentPageView. /// public class DocumentPageViewAutomationPeer : FrameworkElementAutomationPeer { ////// Constructor. /// /// Owner of the AutomationPeer. public DocumentPageViewAutomationPeer(DocumentPageView owner) : base(owner) {} ////// ////// /// AutomationPeer associated with DocumentPageView blocks any exposure /// of the currently hosted page. So it returns empty collection of children. /// protected override ListGetChildrenCore() { return null; } /// /// ////// A string representing the current DocumentPageView. protected override string GetAutomationIdCore() { // Initialize the result to Empty, so that if Name is not set on the // DocumentPageView, and there is no valid PageNumber set, then the // AutomationId will remain blank to avoid duplicate entries. string result = string.Empty; DocumentPageView owner = (DocumentPageView)Owner; // Check if a Name is already set on the DocumentPageView, otherwise attempt // to construct one. if (!string.IsNullOrEmpty(owner.Name)) { result = owner.Name; } else if ((owner.PageNumber >= 0) && (owner.PageNumber < int.MaxValue)) { // This will set the AutomationId to a string that represents the current // page number, i.e. "DocumentPage1" will represent the first page. These numbers // will be kept in a 1-indexed format. InvariantCulture is used to ensure // that these AutomationIds will not change with the language, so that they // can be trusted to always work in automation. result = String.Format(CultureInfo.InvariantCulture, "DocumentPage{0}", owner.PageNumber + 1); } return result; } } } // 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: DocumentPageViewAutomationPeer.cs // // Description: AutomationPeer associated with DocumentPageView. // //--------------------------------------------------------------------------- using System.Collections.Generic; // Listusing System.Globalization; // CultureInfo using System.Windows.Controls; // DocumentViewer using System.Windows.Controls.Primitives; // DocumentPageView namespace System.Windows.Automation.Peers { /// /// AutomationPeer associated with DocumentPageView. /// public class DocumentPageViewAutomationPeer : FrameworkElementAutomationPeer { ////// Constructor. /// /// Owner of the AutomationPeer. public DocumentPageViewAutomationPeer(DocumentPageView owner) : base(owner) {} ////// ////// /// AutomationPeer associated with DocumentPageView blocks any exposure /// of the currently hosted page. So it returns empty collection of children. /// protected override ListGetChildrenCore() { return null; } /// /// ////// A string representing the current DocumentPageView. protected override string GetAutomationIdCore() { // Initialize the result to Empty, so that if Name is not set on the // DocumentPageView, and there is no valid PageNumber set, then the // AutomationId will remain blank to avoid duplicate entries. string result = string.Empty; DocumentPageView owner = (DocumentPageView)Owner; // Check if a Name is already set on the DocumentPageView, otherwise attempt // to construct one. if (!string.IsNullOrEmpty(owner.Name)) { result = owner.Name; } else if ((owner.PageNumber >= 0) && (owner.PageNumber < int.MaxValue)) { // This will set the AutomationId to a string that represents the current // page number, i.e. "DocumentPage1" will represent the first page. These numbers // will be kept in a 1-indexed format. InvariantCulture is used to ensure // that these AutomationIds will not change with the language, so that they // can be trusted to always work in automation. result = String.Format(CultureInfo.InvariantCulture, "DocumentPage{0}", owner.PageNumber + 1); } return result; } } } // 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
- Decimal.cs
- TextRangeProviderWrapper.cs
- DesignerDataColumn.cs
- TransportSecurityProtocol.cs
- ScaleTransform3D.cs
- StyleCollection.cs
- ButtonFlatAdapter.cs
- coordinatorfactory.cs
- TextElement.cs
- ThemeInfoAttribute.cs
- UniformGrid.cs
- CharUnicodeInfo.cs
- SolidColorBrush.cs
- CompiledELinqQueryState.cs
- CompilationLock.cs
- HwndStylusInputProvider.cs
- RequestContext.cs
- WorkflowIdleBehavior.cs
- SHA384Cng.cs
- RoleExceptions.cs
- ValueProviderWrapper.cs
- WaitForChangedResult.cs
- LocalizedNameDescriptionPair.cs
- RelationshipNavigation.cs
- SqlWebEventProvider.cs
- Automation.cs
- FontStyles.cs
- SpellerHighlightLayer.cs
- DataGridViewRowCollection.cs
- TreeNodeStyleCollection.cs
- HttpWriter.cs
- CompoundFileIOPermission.cs
- ResourceReferenceExpressionConverter.cs
- NativeMethods.cs
- PriorityBinding.cs
- IDReferencePropertyAttribute.cs
- SoapIgnoreAttribute.cs
- WrapperEqualityComparer.cs
- Part.cs
- TableLayoutPanelCellPosition.cs
- InternalsVisibleToAttribute.cs
- ReadOnlyTernaryTree.cs
- ConfigurationConverterBase.cs
- JsonWriterDelegator.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- MultiByteCodec.cs
- Rights.cs
- WebSysDefaultValueAttribute.cs
- Misc.cs
- SQLMembershipProvider.cs
- OptimizedTemplateContent.cs
- InstallerTypeAttribute.cs
- KernelTypeValidation.cs
- MarkupExtensionReturnTypeAttribute.cs
- Tokenizer.cs
- KeyConstraint.cs
- GridEntry.cs
- SchemaImporterExtensionElementCollection.cs
- SecurityTokenProvider.cs
- SqlProviderManifest.cs
- QuarticEase.cs
- ThreadPool.cs
- SystemSounds.cs
- TableCell.cs
- LookupNode.cs
- ContractMethodInfo.cs
- ArrayMergeHelper.cs
- PasswordRecovery.cs
- XmlNodeReader.cs
- CodeBinaryOperatorExpression.cs
- XmlSchemaSequence.cs
- GenericsNotImplementedException.cs
- CatalogZoneBase.cs
- DBParameter.cs
- VirtualPathProvider.cs
- HttpCacheVaryByContentEncodings.cs
- StylusButtonEventArgs.cs
- StorageRoot.cs
- File.cs
- InternalTypeHelper.cs
- exports.cs
- PageSetupDialog.cs
- OdbcConnection.cs
- IndependentlyAnimatedPropertyMetadata.cs
- MethodSignatureGenerator.cs
- DictionaryTraceRecord.cs
- DesignerExtenders.cs
- ObfuscateAssemblyAttribute.cs
- WebPartActionVerb.cs
- ContentElementAutomationPeer.cs
- ToolStripSeparator.cs
- JsonReaderWriterFactory.cs
- BitFlagsGenerator.cs
- DataAdapter.cs
- Int64Storage.cs
- CodeSubDirectory.cs
- FastEncoderWindow.cs
- TextElementAutomationPeer.cs
- TreeViewBindingsEditorForm.cs
- DurableOperationAttribute.cs