Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / StatusBarAutomationPeer.cs / 1305600 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridToolTip.cs
- Parser.cs
- EditBehavior.cs
- FtpWebResponse.cs
- Int32CollectionConverter.cs
- Win32.cs
- StringFreezingAttribute.cs
- HotSpotCollection.cs
- TableLayoutSettings.cs
- SwitchLevelAttribute.cs
- CodeMethodInvokeExpression.cs
- MediaElement.cs
- CardSpacePolicyElement.cs
- SqlProviderUtilities.cs
- Point3DConverter.cs
- UIntPtr.cs
- StringInfo.cs
- PathData.cs
- AsynchronousChannelMergeEnumerator.cs
- QilInvokeEarlyBound.cs
- DateTimeStorage.cs
- EventLogHandle.cs
- _Rfc2616CacheValidators.cs
- EndpointNotFoundException.cs
- Bits.cs
- AbstractSvcMapFileLoader.cs
- ScrollChangedEventArgs.cs
- MimeTextImporter.cs
- PointCollectionConverter.cs
- WebPartRestoreVerb.cs
- ResourceLoader.cs
- TextTreeInsertElementUndoUnit.cs
- DataGridViewAccessibleObject.cs
- DbConnectionPoolGroupProviderInfo.cs
- DashStyle.cs
- Message.cs
- GraphicsContainer.cs
- OleDbDataAdapter.cs
- TCPClient.cs
- Empty.cs
- XComponentModel.cs
- Viewport3DAutomationPeer.cs
- HelpProvider.cs
- ImageList.cs
- PropertyInfoSet.cs
- Soap.cs
- FlagsAttribute.cs
- OleDbConnectionInternal.cs
- ProcessInfo.cs
- ComponentRenameEvent.cs
- DesigntimeLicenseContextSerializer.cs
- ContextStaticAttribute.cs
- XPathBinder.cs
- DelayedRegex.cs
- XmlArrayItemAttribute.cs
- UserUseLicenseDictionaryLoader.cs
- QilBinary.cs
- HistoryEventArgs.cs
- HandlerWithFactory.cs
- EntityContainer.cs
- BlobPersonalizationState.cs
- SubqueryTrackingVisitor.cs
- CustomWebEventKey.cs
- ListViewItem.cs
- Sentence.cs
- FormatConvertedBitmap.cs
- DiagnosticsConfiguration.cs
- EntityClassGenerator.cs
- WebPartZoneCollection.cs
- MapPathBasedVirtualPathProvider.cs
- FileChangeNotifier.cs
- SchemaNotation.cs
- ScrollBar.cs
- MsmqIntegrationBindingElement.cs
- DataReceivedEventArgs.cs
- ValidationSummary.cs
- TextTrailingWordEllipsis.cs
- ProfileModule.cs
- XmlCodeExporter.cs
- BindStream.cs
- VoiceSynthesis.cs
- MoveSizeWinEventHandler.cs
- UIElementParaClient.cs
- CompositeFontFamily.cs
- OleDbRowUpdatedEvent.cs
- RadioButton.cs
- AdapterUtil.cs
- OutputCacheSettings.cs
- XsdDateTime.cs
- DeliveryStrategy.cs
- NotFiniteNumberException.cs
- PolyBezierSegment.cs
- VBIdentifierName.cs
- ComponentResourceManager.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- ElementAction.cs
- UnsupportedPolicyOptionsException.cs
- InternalReceiveMessage.cs
- AssemblyHelper.cs
- DeviceSpecificDesigner.cs