Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / GridViewColumnHeaderAutomationPeer.cs / 1 / 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; return null; } 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. 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; return null; } 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
- OutputCacheSettings.cs
- CultureTableRecord.cs
- UnauthorizedWebPart.cs
- ConsoleKeyInfo.cs
- ConfigurationManagerHelper.cs
- Menu.cs
- WindowsListViewSubItem.cs
- ReadOnlyCollectionBase.cs
- Int32Rect.cs
- SettingsPropertyValue.cs
- ResourceCategoryAttribute.cs
- SessionEndingEventArgs.cs
- DynamicValueConverter.cs
- ColorPalette.cs
- ResourceSetExpression.cs
- XmlSchemaGroupRef.cs
- XmlSchemaChoice.cs
- TextShapeableCharacters.cs
- ActivityStateQuery.cs
- OleDbConnectionFactory.cs
- XamlWriter.cs
- EmptyEnumerator.cs
- SimpleWorkerRequest.cs
- DrawingContext.cs
- MimeAnyImporter.cs
- ShapeTypeface.cs
- SymbolResolver.cs
- complextypematerializer.cs
- NegatedConstant.cs
- TextModifierScope.cs
- MSAAEventDispatcher.cs
- XPathDocumentIterator.cs
- DbProviderFactory.cs
- LocalValueEnumerator.cs
- MetaColumn.cs
- HttpRuntimeSection.cs
- SafeNativeMethods.cs
- XmlSchemaProviderAttribute.cs
- RecordConverter.cs
- ValueProviderWrapper.cs
- KeyPullup.cs
- CopyOnWriteList.cs
- DataControlLinkButton.cs
- HttpFileCollectionBase.cs
- XamlSerializer.cs
- SqlConnectionPoolGroupProviderInfo.cs
- FieldMetadata.cs
- UnsafeNativeMethods.cs
- RelationHandler.cs
- DataTable.cs
- ParallelEnumerable.cs
- SingleTagSectionHandler.cs
- RoleGroupCollection.cs
- ListGeneralPage.cs
- WindowsAuthenticationModule.cs
- XmlSchema.cs
- EmbeddedMailObjectsCollection.cs
- CanonicalFontFamilyReference.cs
- BaseCodePageEncoding.cs
- UnionCodeGroup.cs
- JavaScriptSerializer.cs
- BindValidator.cs
- IERequestCache.cs
- ForceCopyBuildProvider.cs
- CertificateManager.cs
- HorizontalAlignConverter.cs
- DataList.cs
- GeneralTransformCollection.cs
- ImageButton.cs
- DocumentViewer.cs
- webproxy.cs
- StorageSetMapping.cs
- _ConnectStream.cs
- WindowsListViewScroll.cs
- CollectionsUtil.cs
- SoapDocumentMethodAttribute.cs
- HiddenFieldPageStatePersister.cs
- RangeBaseAutomationPeer.cs
- InstancePersistenceCommandException.cs
- RemotingConfiguration.cs
- TdsValueSetter.cs
- FillErrorEventArgs.cs
- WindowsFormsSectionHandler.cs
- Queue.cs
- ZipIOLocalFileDataDescriptor.cs
- SmiContextFactory.cs
- XmlQualifiedNameTest.cs
- TimersDescriptionAttribute.cs
- DrawingServices.cs
- AuthenticatedStream.cs
- HtmlControl.cs
- FileSecurity.cs
- HtmlValidatorAdapter.cs
- OpCodes.cs
- RequestFactory.cs
- ZipIOBlockManager.cs
- TableLayoutPanelResizeGlyph.cs
- GlyphInfoList.cs
- UpdateRecord.cs
- BehaviorEditorPart.cs