Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- PeerTransportListenAddressValidatorAttribute.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- TextInfo.cs
- TemplatedAdorner.cs
- wpf-etw.cs
- DbCommandTree.cs
- RequestTimeoutManager.cs
- GeometryGroup.cs
- SystemIPv4InterfaceProperties.cs
- RowVisual.cs
- ZipIOExtraFieldZip64Element.cs
- XmlElementList.cs
- NumericUpDownAccelerationCollection.cs
- PropertyChange.cs
- Semaphore.cs
- XPathNodeInfoAtom.cs
- CodeDomSerializerBase.cs
- MarshalByValueComponent.cs
- ToolStripDropDownItemDesigner.cs
- Material.cs
- SqlDelegatedTransaction.cs
- QuaternionRotation3D.cs
- CodeDirectoryCompiler.cs
- PolyBezierSegment.cs
- mediapermission.cs
- HttpRequestTraceRecord.cs
- RoutedEventConverter.cs
- ErrorWrapper.cs
- InputScopeManager.cs
- EntitySetDataBindingList.cs
- Converter.cs
- FlowDocumentView.cs
- XPathItem.cs
- XhtmlTextWriter.cs
- UriScheme.cs
- HtmlTableRowCollection.cs
- UICuesEvent.cs
- FixedFlowMap.cs
- FieldNameLookup.cs
- CounterCreationData.cs
- DataColumnMappingCollection.cs
- ActiveXContainer.cs
- SerialPinChanges.cs
- LinqDataSourceDisposeEventArgs.cs
- StringConcat.cs
- ChildChangedEventArgs.cs
- DelimitedListTraceListener.cs
- DataGridViewCellConverter.cs
- PrintPageEvent.cs
- HttpWebRequest.cs
- DeferredElementTreeState.cs
- RootDesignerSerializerAttribute.cs
- ColorBlend.cs
- XamlParser.cs
- MemberInitExpression.cs
- ByteStreamGeometryContext.cs
- Site.cs
- XmlAutoDetectWriter.cs
- NavigationCommands.cs
- FormView.cs
- messageonlyhwndwrapper.cs
- ValuePattern.cs
- CodeTypeOfExpression.cs
- DynamicControlParameter.cs
- XmlComment.cs
- _SSPIWrapper.cs
- PropVariant.cs
- SaveFileDialog.cs
- CaretElement.cs
- RelationshipType.cs
- WebScriptMetadataMessageEncoderFactory.cs
- ActivityValidator.cs
- GlyphsSerializer.cs
- Storyboard.cs
- InvocationExpression.cs
- PenThreadWorker.cs
- CalendarDay.cs
- SharedPerformanceCounter.cs
- CommandConverter.cs
- SettingsBase.cs
- CodePageUtils.cs
- ListBoxItem.cs
- PropertyConverter.cs
- GlyphRunDrawing.cs
- CreateUserWizardStep.cs
- SelectionRange.cs
- RelationshipManager.cs
- StreamingContext.cs
- ValidationResult.cs
- TripleDESCryptoServiceProvider.cs
- Emitter.cs
- AspCompat.cs
- BuildTopDownAttribute.cs
- XmlText.cs
- TrackingSection.cs
- SafeUserTokenHandle.cs
- DataSourceXmlSerializer.cs
- QuaternionAnimation.cs
- DocumentPageHost.cs
- DataGridLength.cs