Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / SelectorAutomationPeer.cs / 1305600 / SelectorAutomationPeer.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 SelectorAutomationPeer : ItemsControlAutomationPeer, ISelectionProvider { /// protected SelectorAutomationPeer(Selector owner): base(owner) {} /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.List; } /// override public object GetPattern(PatternInterface patternInterface) { if(patternInterface == PatternInterface.Selection) { return this; } return base.GetPattern(patternInterface); // ItemsControlAutomationPeer support Scroll pattern } /// internal override bool IsPropertySupportedByControlForFindItem(int id) { return SelectorAutomationPeer.IsPropertySupportedByControlForFindItemInternal(id); } internal static new bool IsPropertySupportedByControlForFindItemInternal(int id) { if (ItemsControlAutomationPeer.IsPropertySupportedByControlForFindItemInternal(id)) return true; else { if (SelectionItemPatternIdentifiers.IsSelectedProperty.Id == id) return true; else return false; } } ////// Support for IsSelectedProperty should come from SelectorAutomationPeer only, /// internal override object GetSupportedPropertyValue(ItemAutomationPeer itemPeer, int propertyId) { return SelectorAutomationPeer.GetSupportedPropertyValueInternal(itemPeer, propertyId); } internal static new object GetSupportedPropertyValueInternal(AutomationPeer itemPeer, int propertyId) { if (SelectionItemPatternIdentifiers.IsSelectedProperty.Id == propertyId) { ISelectionItemProvider selectionItem = itemPeer.GetPattern(PatternInterface.SelectionItem) as ISelectionItemProvider; if (selectionItem != null) return selectionItem.IsSelected; else return null; } return ItemsControlAutomationPeer.GetSupportedPropertyValueInternal(itemPeer, propertyId); } //-------------------------------------------------------------------- // // ISelectionProvider // //------------------------------------------------------------------- #region ISelectionProvider IRawElementProviderSimple [] ISelectionProvider.GetSelection() { Selector owner = (Selector)Owner; int count = owner._selectedItems.Count; int itemsCount = (owner as ItemsControl).Items.Count; if(count > 0 && itemsCount > 0) { ListselectedProviders = new List (count); for(int i=0; i AutomationInteropProvider.InvalidateLimit) { this.RaiseAutomationEvent(AutomationEvents.SelectionPatternOnInvalidated); } else { int i; for (i = 0; i < numAdded; i++) { SelectorItemAutomationPeer peer = FindOrCreateItemAutomationPeer(e.AddedItems[i]) as SelectorItemAutomationPeer; if (peer != null) { peer.RaiseAutomationEvent(AutomationEvents.SelectionItemPatternOnElementAddedToSelection); } } for (i = 0; i < numRemoved; i++) { SelectorItemAutomationPeer peer = FindOrCreateItemAutomationPeer(e.RemovedItems[i]) as SelectorItemAutomationPeer; if (peer != null) { peer.RaiseAutomationEvent(AutomationEvents.SelectionItemPatternOnElementRemovedFromSelection); } } } } } #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 abstract class SelectorAutomationPeer : ItemsControlAutomationPeer, ISelectionProvider { /// protected SelectorAutomationPeer(Selector owner): base(owner) {} /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.List; } /// override public object GetPattern(PatternInterface patternInterface) { if(patternInterface == PatternInterface.Selection) { return this; } return base.GetPattern(patternInterface); // ItemsControlAutomationPeer support Scroll pattern } /// internal override bool IsPropertySupportedByControlForFindItem(int id) { return SelectorAutomationPeer.IsPropertySupportedByControlForFindItemInternal(id); } internal static new bool IsPropertySupportedByControlForFindItemInternal(int id) { if (ItemsControlAutomationPeer.IsPropertySupportedByControlForFindItemInternal(id)) return true; else { if (SelectionItemPatternIdentifiers.IsSelectedProperty.Id == id) return true; else return false; } } /// /// Support for IsSelectedProperty should come from SelectorAutomationPeer only, /// internal override object GetSupportedPropertyValue(ItemAutomationPeer itemPeer, int propertyId) { return SelectorAutomationPeer.GetSupportedPropertyValueInternal(itemPeer, propertyId); } internal static new object GetSupportedPropertyValueInternal(AutomationPeer itemPeer, int propertyId) { if (SelectionItemPatternIdentifiers.IsSelectedProperty.Id == propertyId) { ISelectionItemProvider selectionItem = itemPeer.GetPattern(PatternInterface.SelectionItem) as ISelectionItemProvider; if (selectionItem != null) return selectionItem.IsSelected; else return null; } return ItemsControlAutomationPeer.GetSupportedPropertyValueInternal(itemPeer, propertyId); } //-------------------------------------------------------------------- // // ISelectionProvider // //------------------------------------------------------------------- #region ISelectionProvider IRawElementProviderSimple [] ISelectionProvider.GetSelection() { Selector owner = (Selector)Owner; int count = owner._selectedItems.Count; int itemsCount = (owner as ItemsControl).Items.Count; if(count > 0 && itemsCount > 0) { ListselectedProviders = new List (count); for(int i=0; i AutomationInteropProvider.InvalidateLimit) { this.RaiseAutomationEvent(AutomationEvents.SelectionPatternOnInvalidated); } else { int i; for (i = 0; i < numAdded; i++) { SelectorItemAutomationPeer peer = FindOrCreateItemAutomationPeer(e.AddedItems[i]) as SelectorItemAutomationPeer; if (peer != null) { peer.RaiseAutomationEvent(AutomationEvents.SelectionItemPatternOnElementAddedToSelection); } } for (i = 0; i < numRemoved; i++) { SelectorItemAutomationPeer peer = FindOrCreateItemAutomationPeer(e.RemovedItems[i]) as SelectorItemAutomationPeer; if (peer != null) { peer.RaiseAutomationEvent(AutomationEvents.SelectionItemPatternOnElementRemovedFromSelection); } } } } } #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
- TemplateBindingExpression.cs
- XmlSerializerAssemblyAttribute.cs
- GeometryDrawing.cs
- DynamicRendererThreadManager.cs
- Misc.cs
- SocketSettings.cs
- LayoutTable.cs
- WebOperationContext.cs
- ProxySimple.cs
- DetailsViewInsertEventArgs.cs
- WebPartVerbCollection.cs
- TimeSpanConverter.cs
- DataServiceProcessingPipelineEventArgs.cs
- ConfigurationLocation.cs
- DetailsViewDeleteEventArgs.cs
- TextRangeEditLists.cs
- TypeConvertions.cs
- ParserStack.cs
- LicenseManager.cs
- UriSection.cs
- UrlAuthFailedErrorFormatter.cs
- TogglePattern.cs
- StateMachineWorkflow.cs
- RowTypePropertyElement.cs
- embossbitmapeffect.cs
- PropertyBuilder.cs
- TextServicesContext.cs
- HelloOperationAsyncResult.cs
- AtomicFile.cs
- ListViewInsertEventArgs.cs
- BindingCompleteEventArgs.cs
- PublisherIdentityPermission.cs
- HijriCalendar.cs
- ToolStripItemCollection.cs
- ApplicationTrust.cs
- SecurityContextSecurityTokenParameters.cs
- SpeechEvent.cs
- MessageQueuePermissionAttribute.cs
- EntityDataSourceWrapper.cs
- LineServices.cs
- ProfileParameter.cs
- HashSetDebugView.cs
- Int32Rect.cs
- SchemaNamespaceManager.cs
- WebBrowserHelper.cs
- InternalDispatchObject.cs
- Rectangle.cs
- TextSerializer.cs
- SelectionItemPattern.cs
- ManifestBasedResourceGroveler.cs
- Section.cs
- DataSourceView.cs
- HeaderedItemsControl.cs
- SQLCharsStorage.cs
- PhoneCall.cs
- EncoderNLS.cs
- ChannelServices.cs
- WebScriptEndpointElement.cs
- ExpressionBuilder.cs
- SystemColors.cs
- DynamicResourceExtension.cs
- ColorAnimationUsingKeyFrames.cs
- PersonalizationStateQuery.cs
- MissingManifestResourceException.cs
- TextRunCacheImp.cs
- GenericIdentity.cs
- WebResourceAttribute.cs
- hwndwrapper.cs
- HostedHttpContext.cs
- WebPartAuthorizationEventArgs.cs
- DotExpr.cs
- PathNode.cs
- FixedTextBuilder.cs
- WebPartCloseVerb.cs
- LoginUtil.cs
- TaskFormBase.cs
- PropertyKey.cs
- SetIterators.cs
- GridViewAutomationPeer.cs
- ImageDrawing.cs
- RichListBox.cs
- Track.cs
- HwndSourceParameters.cs
- XmlRawWriter.cs
- EventDescriptor.cs
- CacheChildrenQuery.cs
- EntityDataReader.cs
- HttpHeaderCollection.cs
- SerializerProvider.cs
- Latin1Encoding.cs
- ColumnMapTranslator.cs
- EventLogEntry.cs
- DataGridViewCellParsingEventArgs.cs
- BroadcastEventHelper.cs
- UidPropertyAttribute.cs
- ColumnWidthChangingEvent.cs
- ResourceAssociationSet.cs
- TextElementEditingBehaviorAttribute.cs
- BitmapDecoder.cs
- Control.cs