Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / GridViewItemAutomationPeer.cs / 1305600 / GridViewItemAutomationPeer.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; 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 GridViewItemAutomationPeer : ListBoxItemAutomationPeer { /// public GridViewItemAutomationPeer(object owner, ListViewAutomationPeer listviewAP) : base(owner, listviewAP) { Invariant.Assert(owner != null); Invariant.Assert(listviewAP != null); _item = owner; _listviewAP = listviewAP; } /// override protected string GetClassNameCore() { return "ListViewItem"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.DataItem; } /// protected override ListGetChildrenCore() { ListView listview = _listviewAP.Owner as ListView; Invariant.Assert(listview != null); ListViewItem lvi = listview.ItemContainerGenerator.ContainerFromItem(_item) as ListViewItem; if (lvi != null) { GridViewRowPresenter rowPresenter = GridViewAutomationPeer.FindVisualByType(lvi, typeof(GridViewRowPresenter)) as GridViewRowPresenter; if (rowPresenter != null) { Hashtable oldChildren = _dataChildren; //cache the old ones for possible reuse _dataChildren = new Hashtable(rowPresenter.ActualCells.Count); List list = new List (); int row = listview.Items.IndexOf(_item); int column = 0; foreach (UIElement ele in rowPresenter.ActualCells) { GridViewCellAutomationPeer peer = (oldChildren == null ? null : (GridViewCellAutomationPeer)oldChildren[ele]); if (peer == null) { if (ele is ContentPresenter) { peer = new GridViewCellAutomationPeer((ContentPresenter)ele, _listviewAP); } else if (ele is TextBlock) { peer = new GridViewCellAutomationPeer((TextBlock)ele, _listviewAP); } else { Invariant.Assert(false, "Children of GridViewRowPresenter should be ContentPresenter or TextBlock"); } } //protection from indistinguishable UIElement - for example, 2 UIElement wiht same value if (_dataChildren[ele] == null) { //Set Cell's row and column peer.Column = column; peer.Row = row; list.Add(peer); _dataChildren.Add(ele, peer); column++; } } return list; } } return null; } #region Private Fields private object _item; private ListViewAutomationPeer _listviewAP; private Hashtable _dataChildren = null; #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; 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 GridViewItemAutomationPeer : ListBoxItemAutomationPeer { /// public GridViewItemAutomationPeer(object owner, ListViewAutomationPeer listviewAP) : base(owner, listviewAP) { Invariant.Assert(owner != null); Invariant.Assert(listviewAP != null); _item = owner; _listviewAP = listviewAP; } /// override protected string GetClassNameCore() { return "ListViewItem"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.DataItem; } /// protected override List GetChildrenCore() { ListView listview = _listviewAP.Owner as ListView; Invariant.Assert(listview != null); ListViewItem lvi = listview.ItemContainerGenerator.ContainerFromItem(_item) as ListViewItem; if (lvi != null) { GridViewRowPresenter rowPresenter = GridViewAutomationPeer.FindVisualByType(lvi, typeof(GridViewRowPresenter)) as GridViewRowPresenter; if (rowPresenter != null) { Hashtable oldChildren = _dataChildren; //cache the old ones for possible reuse _dataChildren = new Hashtable(rowPresenter.ActualCells.Count); List list = new List (); int row = listview.Items.IndexOf(_item); int column = 0; foreach (UIElement ele in rowPresenter.ActualCells) { GridViewCellAutomationPeer peer = (oldChildren == null ? null : (GridViewCellAutomationPeer)oldChildren[ele]); if (peer == null) { if (ele is ContentPresenter) { peer = new GridViewCellAutomationPeer((ContentPresenter)ele, _listviewAP); } else if (ele is TextBlock) { peer = new GridViewCellAutomationPeer((TextBlock)ele, _listviewAP); } else { Invariant.Assert(false, "Children of GridViewRowPresenter should be ContentPresenter or TextBlock"); } } //protection from indistinguishable UIElement - for example, 2 UIElement wiht same value if (_dataChildren[ele] == null) { //Set Cell's row and column peer.Column = column; peer.Row = row; list.Add(peer); _dataChildren.Add(ele, peer); column++; } } return list; } } return null; } #region Private Fields private object _item; private ListViewAutomationPeer _listviewAP; private Hashtable _dataChildren = null; #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
- UniqueContractNameValidationBehavior.cs
- IsolationInterop.cs
- SqlTypesSchemaImporter.cs
- ConnectionsZone.cs
- XmlSchemaSequence.cs
- Debug.cs
- DesignConnectionCollection.cs
- StringCollectionMarkupSerializer.cs
- CommunicationObjectFaultedException.cs
- LogPolicy.cs
- RequestCacheEntry.cs
- XmlAttribute.cs
- WebPartTransformer.cs
- ControlTemplate.cs
- ServiceOperation.cs
- WorkBatch.cs
- MethodSignatureGenerator.cs
- ConnectionManagementSection.cs
- PartialList.cs
- Delegate.cs
- SapiRecoContext.cs
- TraceListener.cs
- ButtonStandardAdapter.cs
- DataGridViewRowPrePaintEventArgs.cs
- COM2ICategorizePropertiesHandler.cs
- DataGridViewCellStyleConverter.cs
- HttpHandlerActionCollection.cs
- FileSystemWatcher.cs
- Journal.cs
- DataGridItemEventArgs.cs
- __Error.cs
- ReflectionTypeLoadException.cs
- ReceiveErrorHandling.cs
- _SafeNetHandles.cs
- XmlBinaryReaderSession.cs
- OleDbPropertySetGuid.cs
- CellTreeNode.cs
- BigIntegerStorage.cs
- StylusPointCollection.cs
- GrammarBuilder.cs
- SchemaElementLookUpTableEnumerator.cs
- DomNameTable.cs
- GZipDecoder.cs
- BooleanToVisibilityConverter.cs
- NetSectionGroup.cs
- BufferedStream.cs
- KnowledgeBase.cs
- DataControlExtensions.cs
- DataRowComparer.cs
- Cursor.cs
- transactioncontext.cs
- ZoneButton.cs
- Animatable.cs
- GradientStop.cs
- DataGridViewComboBoxColumn.cs
- UnsafeNativeMethods.cs
- UnionExpr.cs
- _ConnectStream.cs
- AttachedPropertyDescriptor.cs
- ToolBar.cs
- compensatingcollection.cs
- MimeMapping.cs
- DateRangeEvent.cs
- AnimatedTypeHelpers.cs
- TemplatePagerField.cs
- WindowsListViewSubItem.cs
- CodeDomSerializerBase.cs
- TypeConverterAttribute.cs
- ScalarType.cs
- RotateTransform.cs
- ScriptIgnoreAttribute.cs
- RegionData.cs
- EmptyStringExpandableObjectConverter.cs
- StorageConditionPropertyMapping.cs
- Validator.cs
- XmlElementAttribute.cs
- QilVisitor.cs
- HostDesigntimeLicenseContext.cs
- ControlCachePolicy.cs
- Helper.cs
- DocumentReferenceCollection.cs
- MemberAccessException.cs
- HashLookup.cs
- PrintSchema.cs
- WebPartEventArgs.cs
- SqlCacheDependencySection.cs
- DBConcurrencyException.cs
- SettingsPropertyCollection.cs
- Pens.cs
- LightweightCodeGenerator.cs
- String.cs
- ToolstripProfessionalRenderer.cs
- Scanner.cs
- XpsColorContext.cs
- ReadWriteSpinLock.cs
- DataGridColumn.cs
- XmlPreloadedResolver.cs
- ContextProperty.cs
- XmlUTF8TextReader.cs
- CqlLexer.cs