Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Automation / Peers / TextBlockAutomationPeer.cs / 1 / TextBlockAutomationPeer.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: TextBlockAutomationPeer.cs // // Description: AutomationPeer associated with TextBlock. // //--------------------------------------------------------------------------- using System.Collections.Generic; // Listusing System.Windows.Controls; // TextBlock using System.Windows.Documents; // ITextContainer using MS.Internal.Documents; // TextContainerHelper namespace System.Windows.Automation.Peers { /// /// AutomationPeer associated with TextBlock. /// public class TextBlockAutomationPeer : FrameworkElementAutomationPeer { ////// Constructor. /// /// Owner of the AutomationPeer. public TextBlockAutomationPeer(TextBlock owner) : base(owner) { } ////// protected override List/// GetChildrenCore() { List peers = null; TextBlock owner = (TextBlock)Owner; // TextBlock has children only if it has complex content. if (owner.HasComplexContent) { peers = TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.End, null); } return peers; } /// /// protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Text; } ////// /// ////// protected override string GetClassNameCore() { return "TextBlock"; } /// /// override protected bool IsControlElementCore() { // Return true if TextBlock is not part of the style return ((TextBlock)Owner).TemplatedParent == null; } } } // 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: TextBlockAutomationPeer.cs // // Description: AutomationPeer associated with TextBlock. // //--------------------------------------------------------------------------- using System.Collections.Generic; // List/// using System.Windows.Controls; // TextBlock using System.Windows.Documents; // ITextContainer using MS.Internal.Documents; // TextContainerHelper namespace System.Windows.Automation.Peers { /// /// AutomationPeer associated with TextBlock. /// public class TextBlockAutomationPeer : FrameworkElementAutomationPeer { ////// Constructor. /// /// Owner of the AutomationPeer. public TextBlockAutomationPeer(TextBlock owner) : base(owner) { } ////// protected override List/// GetChildrenCore() { List peers = null; TextBlock owner = (TextBlock)Owner; // TextBlock has children only if it has complex content. if (owner.HasComplexContent) { peers = TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.End, null); } return peers; } /// /// protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Text; } ////// /// ////// protected override string GetClassNameCore() { return "TextBlock"; } /// /// override protected bool IsControlElementCore() { // Return true if TextBlock is not part of the style return ((TextBlock)Owner).TemplatedParent == null; } } } // 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
- XmlSchemaSimpleType.cs
- ProfileProvider.cs
- AQNBuilder.cs
- webeventbuffer.cs
- DataControlField.cs
- MimeObjectFactory.cs
- ToolStripTextBox.cs
- MsmqNonTransactedPoisonHandler.cs
- remotingproxy.cs
- SoapElementAttribute.cs
- HostProtectionException.cs
- ContextInformation.cs
- VirtualizingPanel.cs
- ResourceDescriptionAttribute.cs
- Help.cs
- EventEntry.cs
- CacheRequest.cs
- MessageVersionConverter.cs
- UnsafeNativeMethodsTablet.cs
- ServiceModelExtensionCollectionElement.cs
- SafeLibraryHandle.cs
- EntitySqlQueryCacheKey.cs
- TypeConverter.cs
- TypedServiceChannelBuilder.cs
- CredentialCache.cs
- WebServicesSection.cs
- HMACSHA256.cs
- Section.cs
- Token.cs
- RoleService.cs
- X509InitiatorCertificateServiceElement.cs
- _UriSyntax.cs
- OptimisticConcurrencyException.cs
- DataGridViewToolTip.cs
- XmlSerializationWriter.cs
- WinEventHandler.cs
- TraceUtility.cs
- SafePointer.cs
- ListenerElementsCollection.cs
- DataGridViewBindingCompleteEventArgs.cs
- CaseInsensitiveHashCodeProvider.cs
- RequestCacheManager.cs
- ActivityValidator.cs
- RTLAwareMessageBox.cs
- AsyncStreamReader.cs
- DiscoveryClientReferences.cs
- InvokePattern.cs
- LazyTextWriterCreator.cs
- figurelength.cs
- _NTAuthentication.cs
- OdbcInfoMessageEvent.cs
- GCHandleCookieTable.cs
- DataTableTypeConverter.cs
- HorizontalAlignConverter.cs
- HashSetEqualityComparer.cs
- SchemaNamespaceManager.cs
- JobDuplex.cs
- FixedLineResult.cs
- DEREncoding.cs
- MaskedTextProvider.cs
- SingleAnimationUsingKeyFrames.cs
- PkcsMisc.cs
- SapiRecoContext.cs
- SetState.cs
- DesignerFrame.cs
- SystemThemeKey.cs
- FontConverter.cs
- Matrix.cs
- ExpressionNormalizer.cs
- DbConnectionPool.cs
- HttpException.cs
- MenuItemBinding.cs
- EncodingNLS.cs
- XmlBinaryReader.cs
- ListItemsCollectionEditor.cs
- WindowsListView.cs
- CompilerTypeWithParams.cs
- Clock.cs
- MimeFormatExtensions.cs
- TextServicesHost.cs
- NumericUpDownAccelerationCollection.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- ApplicationFileParser.cs
- DesignerAttributeInfo.cs
- Assert.cs
- ExpressionContext.cs
- PeerContact.cs
- ClientFormsAuthenticationCredentials.cs
- WebServiceMethodData.cs
- TextStore.cs
- GPRECTF.cs
- DotExpr.cs
- ResXResourceSet.cs
- PrinterSettings.cs
- ObjectCache.cs
- RequestCacheManager.cs
- HttpListenerException.cs
- JsonQueryStringConverter.cs
- DemultiplexingDispatchMessageFormatter.cs
- MatrixConverter.cs