Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / GridViewColumnHeaderAutomationPeer.cs / 1305600 / GridViewColumnHeaderAutomationPeer.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 GridViewColumnHeaderAutomationPeer : FrameworkElementAutomationPeer, IInvokeProvider, ITransformProvider { /// public GridViewColumnHeaderAutomationPeer(GridViewColumnHeader owner) : base(owner) { } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.HeaderItem; } /// override protected string GetClassNameCore() { return "GridViewColumnHeader"; } /// override public object GetPattern(PatternInterface patternInterface) { if (patternInterface == PatternInterface.Invoke || patternInterface == PatternInterface.Transform) { return this; } else { return base.GetPattern(patternInterface); } } void IInvokeProvider.Invoke() { if (!IsEnabled()) throw new ElementNotEnabledException(); GridViewColumnHeader owner = (GridViewColumnHeader)Owner; owner.AutomationClick(); } #region ITransformProvider bool ITransformProvider.CanMove { get { return false; } } //Note: CanResize can be false if Max/MinWidth,Height has been added on GridViewColumn/ColumnHeader bool ITransformProvider.CanResize { get { return true; } } bool ITransformProvider.CanRotate { get { return false; } } //Note: Don't support Move so far, if users do need this feature to reorder columns, //we can consider to add it later. (One concern is GVCH doesn't support reorder by moving itself) void ITransformProvider.Move(double x, double y) { throw new InvalidOperationException(SR.Get(SRID.UIA_OperationCannotBePerformed)); } void ITransformProvider.Resize(double width, double height) { if (!IsEnabled()) throw new ElementNotEnabledException(); if (width < 0) { throw new ArgumentOutOfRangeException("width"); } if (height < 0) { throw new ArgumentOutOfRangeException("height"); } GridViewColumnHeader header = Owner as GridViewColumnHeader; if (header != null) { if (header.Column != null) { header.Column.Width = width; } header.Height = height; } } void ITransformProvider.Rotate(double degrees) { throw new InvalidOperationException(SR.Get(SRID.UIA_OperationCannotBePerformed)); } #endregion } } // 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
- ParallelEnumerableWrapper.cs
- Vars.cs
- AnonymousIdentificationModule.cs
- XPathNodePointer.cs
- DesignerCatalogPartChrome.cs
- XmlDictionaryReaderQuotas.cs
- VideoDrawing.cs
- Pen.cs
- GridView.cs
- SafeHandle.cs
- MSG.cs
- RelatedCurrencyManager.cs
- TitleStyle.cs
- UniqueConstraint.cs
- HierarchicalDataSourceControl.cs
- SafeProcessHandle.cs
- dbdatarecord.cs
- RegexCode.cs
- XmlKeywords.cs
- SQLGuid.cs
- CachingHintValidation.cs
- InvokeMethod.cs
- IDataContractSurrogate.cs
- SQlBooleanStorage.cs
- PolicyException.cs
- DetailsViewUpdateEventArgs.cs
- TimeoutValidationAttribute.cs
- StylusPointProperties.cs
- COM2Enum.cs
- StringCollection.cs
- ClientCultureInfo.cs
- IIS7WorkerRequest.cs
- ListViewUpdatedEventArgs.cs
- SoapAttributeOverrides.cs
- UTF8Encoding.cs
- Track.cs
- DesignerSerializerAttribute.cs
- SerializableAttribute.cs
- DataServiceQueryOfT.cs
- RegionData.cs
- QueryPageSettingsEventArgs.cs
- BufferModesCollection.cs
- MsmqIntegrationProcessProtocolHandler.cs
- Point3DCollection.cs
- ContextMenuStrip.cs
- FormsAuthenticationConfiguration.cs
- KeyedByTypeCollection.cs
- ErrorFormatterPage.cs
- GetChildSubtree.cs
- CodeArgumentReferenceExpression.cs
- CustomErrorCollection.cs
- columnmapfactory.cs
- DBSqlParserTableCollection.cs
- OutKeywords.cs
- HttpRuntimeSection.cs
- ConditionalAttribute.cs
- Contracts.cs
- BitmapEffectGeneralTransform.cs
- MailMessageEventArgs.cs
- OrderedDictionaryStateHelper.cs
- x509store.cs
- DetailsView.cs
- GridViewSortEventArgs.cs
- TemplateKeyConverter.cs
- SubMenuStyle.cs
- DESCryptoServiceProvider.cs
- ParentUndoUnit.cs
- StringUtil.cs
- InternalCompensate.cs
- TextModifier.cs
- XpsLiterals.cs
- XslVisitor.cs
- ValueTable.cs
- ResourceDescriptionAttribute.cs
- UserUseLicenseDictionaryLoader.cs
- DesignTimeTemplateParser.cs
- SingleAnimation.cs
- PenLineJoinValidation.cs
- AnnotationMap.cs
- StringStorage.cs
- MetaDataInfo.cs
- SmtpNegotiateAuthenticationModule.cs
- UserMapPath.cs
- IApplicationTrustManager.cs
- ChangeTracker.cs
- XmlSchemaSimpleContent.cs
- SecurityProtocolCorrelationState.cs
- CroppedBitmap.cs
- ProfilePropertySettingsCollection.cs
- SqlNodeAnnotations.cs
- PaintEvent.cs
- ArrangedElement.cs
- Shape.cs
- ScrollProperties.cs
- TypeUtil.cs
- DataGridViewCheckBoxColumn.cs
- PixelFormats.cs
- MarkedHighlightComponent.cs
- MembershipSection.cs
- PageCatalogPart.cs