Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Automation / Peers / GridViewHeaderRowPresenterAutomationPeer.cs / 1 / GridViewHeaderRowPresenterAutomationPeer.cs
using System; using System.Collections; using System.Collections.Generic; 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.Interop; using System.Windows.Media; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class GridViewHeaderRowPresenterAutomationPeer : FrameworkElementAutomationPeer { /// public GridViewHeaderRowPresenterAutomationPeer(GridViewHeaderRowPresenter owner) : base(owner) { } /// override protected string GetClassNameCore() { return "GridViewHeaderRowPresenter"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Header; } /// protected override ListGetChildrenCore() { List list = base.GetChildrenCore(); List newList = new List (list.Count); if (list != null && list.Count > 0) { //GVHRP contains 2 extra column headers, one is dummy header, the other is floating header //We need to remove them from the tree foreach (AutomationPeer peer in list) { if (peer is UIElementAutomationPeer) { GridViewColumnHeader header = ((UIElementAutomationPeer)peer).Owner as GridViewColumnHeader; if (header != null && header.Role == GridViewColumnHeaderRole.Normal) { //Because GVHRP uses inverse sequence to store column headers, we need to use insert here newList.Insert(0, peer); } } } } return newList; } } } // 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
- LineInfo.cs
- MiniAssembly.cs
- DesignTimeDataBinding.cs
- SelfIssuedAuthRSAPKCS1SignatureFormatter.cs
- ConsumerConnectionPoint.cs
- Environment.cs
- InstanceNormalEvent.cs
- DiagnosticsConfiguration.cs
- WorkItem.cs
- BamlResourceSerializer.cs
- Resources.Designer.cs
- ReplacementText.cs
- Error.cs
- ServicesUtilities.cs
- XPathDocument.cs
- MSHTMLHostUtil.cs
- FullTrustAssembly.cs
- TypeSource.cs
- X509UI.cs
- StringKeyFrameCollection.cs
- InkCanvasFeedbackAdorner.cs
- Menu.cs
- ProfessionalColors.cs
- ObjRef.cs
- CheckBoxAutomationPeer.cs
- EdgeProfileValidation.cs
- SymLanguageVendor.cs
- MsmqIntegrationInputChannel.cs
- NavigateEvent.cs
- Point4D.cs
- TextContainerHelper.cs
- Classification.cs
- ExpressionEditorAttribute.cs
- AttachedPropertyBrowsableAttribute.cs
- InfocardInteractiveChannelInitializer.cs
- DataGridItemEventArgs.cs
- TextSelectionHighlightLayer.cs
- PointConverter.cs
- HitTestFilterBehavior.cs
- ListDesigner.cs
- ExecutedRoutedEventArgs.cs
- InstrumentationTracker.cs
- SettingsContext.cs
- followingsibling.cs
- ConfigXmlComment.cs
- XmlSchemaSimpleTypeUnion.cs
- SessionPageStatePersister.cs
- RunClient.cs
- mediaclock.cs
- CustomCategoryAttribute.cs
- PolyQuadraticBezierSegment.cs
- SingleAnimationBase.cs
- WebPartVerbCollection.cs
- DesignTimeParseData.cs
- MissingMemberException.cs
- Ref.cs
- Utils.cs
- BinaryFormatter.cs
- HyperLinkField.cs
- TimerElapsedEvenArgs.cs
- URLAttribute.cs
- XamlRtfConverter.cs
- XamlTreeBuilder.cs
- PropertyChangeTracker.cs
- SqlFormatter.cs
- DllNotFoundException.cs
- HttpRequestBase.cs
- SourceLocation.cs
- RegexCode.cs
- UrlAuthorizationModule.cs
- DataGridViewCellConverter.cs
- DictionaryKeyPropertyAttribute.cs
- GacUtil.cs
- WCFBuildProvider.cs
- CellPartitioner.cs
- MultipartIdentifier.cs
- RoamingStoreFile.cs
- LiteralControl.cs
- ThrowHelper.cs
- PageFunction.cs
- FragmentNavigationEventArgs.cs
- MILUtilities.cs
- ValidationError.cs
- rsa.cs
- ConfigXmlElement.cs
- DataGridRowEventArgs.cs
- DeobfuscatingStream.cs
- AccessDataSourceView.cs
- EntityProviderFactory.cs
- LinkedResourceCollection.cs
- TemplateBindingExpressionConverter.cs
- ImpersonateTokenRef.cs
- ComboBoxRenderer.cs
- SqlClientWrapperSmiStreamChars.cs
- HttpWebRequest.cs
- CommonGetThemePartSize.cs
- GenericTextProperties.cs
- BitmapEffect.cs
- ExtensionSimplifierMarkupObject.cs
- SafeFindHandle.cs