Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / Automation / Peers / ItemAutomationPeer.cs / 1 / ItemAutomationPeer.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 abstract class ItemAutomationPeer : AutomationPeer { /// protected ItemAutomationPeer(object item, ItemsControlAutomationPeer itemsControlAutomationPeer): base() { _item = item; _itemsControlAutomationPeer = itemsControlAutomationPeer; } internal UIElement GetWrapper() { UIElement wrapper = null; ItemsControl owner = (ItemsControl)(_itemsControlAutomationPeer.Owner); if (owner != null) { if (((MS.Internal.Controls.IGeneratorHost)owner).IsItemItsOwnContainer(_item)) wrapper = _item as UIElement; else wrapper = owner.ItemContainerGenerator.ContainerFromItem(_item) as UIElement; } return wrapper; } internal AutomationPeer GetWrapperPeer() { AutomationPeer wrapperPeer = null; UIElement wrapper = GetWrapper(); if(wrapper != null) { wrapperPeer = UIElementAutomationPeer.CreatePeerForElement(wrapper); if(wrapperPeer == null) //fall back to default peer if there is no specific one { if(wrapper is FrameworkElement) wrapperPeer = new FrameworkElementAutomationPeer((FrameworkElement)wrapper); else wrapperPeer = new UIElementAutomationPeer(wrapper); } } return wrapperPeer; } /// override protected string GetItemTypeCore() { return string.Empty; } /// protected override ListGetChildrenCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) { //We need to update children here since the wrapperPeer.UpdateSubtree(); List children = wrapperPeer.GetChildren(); return children; } return null; } /// protected override Rect GetBoundingRectangleCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetBoundingRectangle(); else return new Rect(); } /// protected override bool IsOffscreenCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsOffscreen(); else return true; } /// protected override AutomationOrientation GetOrientationCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetOrientation(); else return AutomationOrientation.None; } /// protected override string GetItemStatusCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetItemStatus(); else return string.Empty; } /// protected override bool IsRequiredForFormCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsRequiredForForm(); else return false; } /// protected override bool IsKeyboardFocusableCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsKeyboardFocusable(); else return false; } /// protected override bool HasKeyboardFocusCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.HasKeyboardFocus(); else return false; } /// protected override bool IsEnabledCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsEnabled(); else return false; } /// protected override bool IsPasswordCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsPassword(); else return false; } /// protected override string GetAutomationIdCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetAutomationId(); else return string.Empty; } /// protected override string GetNameCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); string name = null; if(wrapperPeer != null) name = wrapperPeer.GetName(); if(name == null && _item is string) name = (string)_item; if(name == null) name = string.Empty; return name; } /// protected override bool IsContentElementCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsContentElement(); else return true; } /// protected override bool IsControlElementCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsControlElement(); else return true; } /// protected override AutomationPeer GetLabeledByCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetLabeledBy(); else return null; } /// protected override string GetHelpTextCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetHelpText(); else return string.Empty; } /// protected override string GetAcceleratorKeyCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetAcceleratorKey(); else return string.Empty; } /// protected override string GetAccessKeyCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetAccessKey(); else return string.Empty; } /// protected override Point GetClickablePointCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetClickablePoint(); else return new Point(double.NaN, double.NaN); } /// protected override void SetFocusCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) wrapperPeer.SetFocus(); } /// public object Item { get { return _item; } } /// public ItemsControlAutomationPeer ItemsControlAutomationPeer { get { return _itemsControlAutomationPeer; } } private object _item; private ItemsControlAutomationPeer _itemsControlAutomationPeer; } } // 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 abstract class ItemAutomationPeer : AutomationPeer { /// protected ItemAutomationPeer(object item, ItemsControlAutomationPeer itemsControlAutomationPeer): base() { _item = item; _itemsControlAutomationPeer = itemsControlAutomationPeer; } internal UIElement GetWrapper() { UIElement wrapper = null; ItemsControl owner = (ItemsControl)(_itemsControlAutomationPeer.Owner); if (owner != null) { if (((MS.Internal.Controls.IGeneratorHost)owner).IsItemItsOwnContainer(_item)) wrapper = _item as UIElement; else wrapper = owner.ItemContainerGenerator.ContainerFromItem(_item) as UIElement; } return wrapper; } internal AutomationPeer GetWrapperPeer() { AutomationPeer wrapperPeer = null; UIElement wrapper = GetWrapper(); if(wrapper != null) { wrapperPeer = UIElementAutomationPeer.CreatePeerForElement(wrapper); if(wrapperPeer == null) //fall back to default peer if there is no specific one { if(wrapper is FrameworkElement) wrapperPeer = new FrameworkElementAutomationPeer((FrameworkElement)wrapper); else wrapperPeer = new UIElementAutomationPeer(wrapper); } } return wrapperPeer; } /// override protected string GetItemTypeCore() { return string.Empty; } /// protected override List GetChildrenCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) { //We need to update children here since the wrapperPeer.UpdateSubtree(); List children = wrapperPeer.GetChildren(); return children; } return null; } /// protected override Rect GetBoundingRectangleCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetBoundingRectangle(); else return new Rect(); } /// protected override bool IsOffscreenCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsOffscreen(); else return true; } /// protected override AutomationOrientation GetOrientationCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetOrientation(); else return AutomationOrientation.None; } /// protected override string GetItemStatusCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetItemStatus(); else return string.Empty; } /// protected override bool IsRequiredForFormCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsRequiredForForm(); else return false; } /// protected override bool IsKeyboardFocusableCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsKeyboardFocusable(); else return false; } /// protected override bool HasKeyboardFocusCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.HasKeyboardFocus(); else return false; } /// protected override bool IsEnabledCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsEnabled(); else return false; } /// protected override bool IsPasswordCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsPassword(); else return false; } /// protected override string GetAutomationIdCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetAutomationId(); else return string.Empty; } /// protected override string GetNameCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); string name = null; if(wrapperPeer != null) name = wrapperPeer.GetName(); if(name == null && _item is string) name = (string)_item; if(name == null) name = string.Empty; return name; } /// protected override bool IsContentElementCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsContentElement(); else return true; } /// protected override bool IsControlElementCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.IsControlElement(); else return true; } /// protected override AutomationPeer GetLabeledByCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetLabeledBy(); else return null; } /// protected override string GetHelpTextCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetHelpText(); else return string.Empty; } /// protected override string GetAcceleratorKeyCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetAcceleratorKey(); else return string.Empty; } /// protected override string GetAccessKeyCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetAccessKey(); else return string.Empty; } /// protected override Point GetClickablePointCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) return wrapperPeer.GetClickablePoint(); else return new Point(double.NaN, double.NaN); } /// protected override void SetFocusCore() { AutomationPeer wrapperPeer = GetWrapperPeer(); if(wrapperPeer != null) wrapperPeer.SetFocus(); } /// public object Item { get { return _item; } } /// public ItemsControlAutomationPeer ItemsControlAutomationPeer { get { return _itemsControlAutomationPeer; } } private object _item; private ItemsControlAutomationPeer _itemsControlAutomationPeer; } } // 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
- TypeSystem.cs
- RichTextBox.cs
- WindowsComboBox.cs
- DataTemplateSelector.cs
- URLAttribute.cs
- TraceContext.cs
- FontWeightConverter.cs
- COM2AboutBoxPropertyDescriptor.cs
- QueryExecutionOption.cs
- UserNamePasswordValidationMode.cs
- PathGeometry.cs
- ResourcePool.cs
- PEFileEvidenceFactory.cs
- TokenizerHelper.cs
- LambdaCompiler.cs
- XmlDocumentFragment.cs
- XmlChoiceIdentifierAttribute.cs
- ConsoleKeyInfo.cs
- XmlCharCheckingWriter.cs
- RuleSetReference.cs
- KeySpline.cs
- LocalTransaction.cs
- XmlAttributes.cs
- XmlSchemaAppInfo.cs
- CodeBinaryOperatorExpression.cs
- WebControlAdapter.cs
- WinEventHandler.cs
- SrgsSemanticInterpretationTag.cs
- WindowsTooltip.cs
- SQLBytes.cs
- FlowDocumentView.cs
- SwitchLevelAttribute.cs
- DateTimeAutomationPeer.cs
- DataTableExtensions.cs
- Brush.cs
- DataSourceXmlSerializationAttribute.cs
- HeaderUtility.cs
- RepeaterItemCollection.cs
- CodeCommentStatementCollection.cs
- HScrollBar.cs
- VectorKeyFrameCollection.cs
- SpecularMaterial.cs
- RelationshipDetailsRow.cs
- DataServiceRequestOfT.cs
- WorkflowViewService.cs
- SkipQueryOptionExpression.cs
- SecureUICommand.cs
- DiscriminatorMap.cs
- MarkerProperties.cs
- DataSetMappper.cs
- InsufficientMemoryException.cs
- NetworkCredential.cs
- LayoutTableCell.cs
- XmlObjectSerializerContext.cs
- XmlQueryRuntime.cs
- externdll.cs
- GroupItem.cs
- XmlSchemaInclude.cs
- MarkupProperty.cs
- XmlSchemaAnyAttribute.cs
- TraceListeners.cs
- HttpCachePolicyElement.cs
- StateManagedCollection.cs
- SetterBaseCollection.cs
- ContentControl.cs
- DecimalAnimation.cs
- FormViewUpdatedEventArgs.cs
- XPathAncestorQuery.cs
- QuotaThrottle.cs
- Material.cs
- IconHelper.cs
- ArgIterator.cs
- _ListenerResponseStream.cs
- UnsafeNativeMethods.cs
- CqlQuery.cs
- DrawingAttributesDefaultValueFactory.cs
- LicenseManager.cs
- SupportingTokenBindingElement.cs
- UpdatePanelTriggerCollection.cs
- PropertyToken.cs
- WebDescriptionAttribute.cs
- ReachPageContentCollectionSerializer.cs
- ReadOnlyCollectionBase.cs
- UIServiceHelper.cs
- NamespaceInfo.cs
- CacheDependency.cs
- OdbcConnectionOpen.cs
- BmpBitmapDecoder.cs
- RawStylusInputCustomDataList.cs
- JumpTask.cs
- NetworkInterface.cs
- CommandManager.cs
- ObjectItemAttributeAssemblyLoader.cs
- StackOverflowException.cs
- TypeConverterHelper.cs
- TextSerializer.cs
- VirtualizingStackPanel.cs
- RepeaterDesigner.cs
- X500Name.cs
- FormViewInsertedEventArgs.cs