Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Automation / Peers / StatusBarAutomationPeer.cs / 1 / StatusBarAutomationPeer.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 StatusBarAutomationPeer : FrameworkElementAutomationPeer { /// public StatusBarAutomationPeer(StatusBar owner): base(owner) {} /// protected override string GetClassNameCore() { return "StatusBar"; } /// protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.StatusBar; } /// protected override ListGetChildrenCore() { List list = new List (); ItemsControl itemscontrol = Owner as ItemsControl; if (itemscontrol != null) { foreach (object obj in itemscontrol.Items) { if (obj is Separator) { Separator separator = obj as Separator; list.Add(UIElementAutomationPeer.CreatePeerForElement(separator)); } else { StatusBarItem item = itemscontrol.ItemContainerGenerator.ContainerFromItem(obj) as StatusBarItem; if (item != null) { //If the item is a string or TextBlock or StatusBarItem //StatusBarItemAutomationPeer will be created to show the text //Or we'll use the control's automation peer if (obj is string || obj is TextBlock || (obj is StatusBarItem && ((StatusBarItem)obj).Content is string)) { list.Add(UIElementAutomationPeer.CreatePeerForElement(item)); } else { List childList = GetChildrenAutomationPeer(item); if (childList != null) { foreach (AutomationPeer ap in childList) { list.Add(ap); } } } } } } } return list; } /// /// Get the children of the parent which has automation peer /// private ListGetChildrenAutomationPeer(Visual parent) { Invariant.Assert(parent != null); List children = null; iterate(parent, (IteratorCallback)delegate(AutomationPeer peer) { if (children == null) children = new List (); children.Add(peer); return (false); }); return children; } private delegate bool IteratorCallback(AutomationPeer peer); // private static bool iterate(Visual parent, IteratorCallback callback) { bool done = false; AutomationPeer peer = null; int count = parent.InternalVisualChildrenCount; for (int i = 0; i < count && !done; i++) { Visual child = parent.InternalGetVisualChild(i); if (child != null && child.CheckFlagsAnd(VisualFlags.IsUIElement) && (peer = CreatePeerForElement((UIElement)child)) != null) { done = callback(peer); } else { done = iterate(child, callback); } } return (done); } } } // 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 StatusBarAutomationPeer : FrameworkElementAutomationPeer { /// public StatusBarAutomationPeer(StatusBar owner): base(owner) {} /// protected override string GetClassNameCore() { return "StatusBar"; } /// protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.StatusBar; } /// protected override List GetChildrenCore() { List list = new List (); ItemsControl itemscontrol = Owner as ItemsControl; if (itemscontrol != null) { foreach (object obj in itemscontrol.Items) { if (obj is Separator) { Separator separator = obj as Separator; list.Add(UIElementAutomationPeer.CreatePeerForElement(separator)); } else { StatusBarItem item = itemscontrol.ItemContainerGenerator.ContainerFromItem(obj) as StatusBarItem; if (item != null) { //If the item is a string or TextBlock or StatusBarItem //StatusBarItemAutomationPeer will be created to show the text //Or we'll use the control's automation peer if (obj is string || obj is TextBlock || (obj is StatusBarItem && ((StatusBarItem)obj).Content is string)) { list.Add(UIElementAutomationPeer.CreatePeerForElement(item)); } else { List childList = GetChildrenAutomationPeer(item); if (childList != null) { foreach (AutomationPeer ap in childList) { list.Add(ap); } } } } } } } return list; } /// /// Get the children of the parent which has automation peer /// private ListGetChildrenAutomationPeer(Visual parent) { Invariant.Assert(parent != null); List children = null; iterate(parent, (IteratorCallback)delegate(AutomationPeer peer) { if (children == null) children = new List (); children.Add(peer); return (false); }); return children; } private delegate bool IteratorCallback(AutomationPeer peer); // private static bool iterate(Visual parent, IteratorCallback callback) { bool done = false; AutomationPeer peer = null; int count = parent.InternalVisualChildrenCount; for (int i = 0; i < count && !done; i++) { Visual child = parent.InternalGetVisualChild(i); if (child != null && child.CheckFlagsAnd(VisualFlags.IsUIElement) && (peer = CreatePeerForElement((UIElement)child)) != null) { done = callback(peer); } else { done = iterate(child, callback); } } return (done); } } } // 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
- NameTable.cs
- XPathSelfQuery.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- SymbolEqualComparer.cs
- SecurityTokenProvider.cs
- _emptywebproxy.cs
- MetadataExporter.cs
- HtmlLink.cs
- TypeUtil.cs
- ListBox.cs
- DateTimeConverter2.cs
- Floater.cs
- PipeConnection.cs
- CommandArguments.cs
- ColumnWidthChangedEvent.cs
- XhtmlConformanceSection.cs
- DynamicEndpoint.cs
- ParseHttpDate.cs
- StylusPointPropertyInfo.cs
- WmlListAdapter.cs
- WebPartsSection.cs
- SqlBulkCopyColumnMapping.cs
- UInt64.cs
- AnnotationHighlightLayer.cs
- DurableInstanceContextProvider.cs
- JoinGraph.cs
- SortDescription.cs
- TextRunProperties.cs
- OLEDB_Enum.cs
- SynchronousChannelMergeEnumerator.cs
- ChangeTracker.cs
- FreezableOperations.cs
- SrgsSubset.cs
- WebPartChrome.cs
- PropertyCondition.cs
- ObjectSpanRewriter.cs
- WindowsTooltip.cs
- ExceptionValidationRule.cs
- RegistryKey.cs
- PriorityQueue.cs
- SqlVersion.cs
- ValidatingReaderNodeData.cs
- DynamicValidator.cs
- ElementProxy.cs
- KeyInstance.cs
- RuntimeIdentifierPropertyAttribute.cs
- PreProcessor.cs
- HebrewNumber.cs
- BuildProviderAppliesToAttribute.cs
- UIElement3D.cs
- SourceFileInfo.cs
- CellLabel.cs
- RemotingAttributes.cs
- BulletChrome.cs
- ApplicationInterop.cs
- HttpRawResponse.cs
- DefaultValueConverter.cs
- TabletDeviceInfo.cs
- ConfigurationManagerInternalFactory.cs
- TextTreeInsertUndoUnit.cs
- CodeParameterDeclarationExpressionCollection.cs
- AttachmentCollection.cs
- DragAssistanceManager.cs
- RequestUriProcessor.cs
- ClientOptions.cs
- RegexReplacement.cs
- BitmapEffectGroup.cs
- MSAAEventDispatcher.cs
- NativeMethods.cs
- OracleTransaction.cs
- EditCommandColumn.cs
- ValidationRuleCollection.cs
- FieldBuilder.cs
- InstallerTypeAttribute.cs
- MenuScrollingVisibilityConverter.cs
- CommunicationObjectAbortedException.cs
- VisualStyleTypesAndProperties.cs
- ToolStripHighContrastRenderer.cs
- Win32.cs
- TagMapCollection.cs
- GlyphManager.cs
- StyleCollection.cs
- UInt64.cs
- ComponentManagerBroker.cs
- AuthStoreRoleProvider.cs
- ServiceHttpHandlerFactory.cs
- SwitchCase.cs
- IPEndPointCollection.cs
- UpdateManifestForBrowserApplication.cs
- ProfileParameter.cs
- WebPartEditorApplyVerb.cs
- DeviceOverridableAttribute.cs
- WebBrowsableAttribute.cs
- PackagePart.cs
- ExitEventArgs.cs
- RuleInfoComparer.cs
- WebBrowserPermission.cs
- GrammarBuilderRuleRef.cs
- NullableLongMinMaxAggregationOperator.cs
- Binding.cs