Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / UIAutomation / Win32Providers / MS / Internal / AutomationProxies / WindowsToolbarItemAsMenuItem.cs / 1305600 / WindowsToolbarItemAsMenuItem.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Some applications implement menus with toolbars. This proxy // will used the IAccessible to expose these toolbar items as // menu items. This proxy is derived from ToolbarItem since // the underlying control really is a toolbar and ToolbarItem // knows how to communicate with a toolbars to get information for // toolbar items already. // // History: // 01/31/2005 : [....] Created //--------------------------------------------------------------------------- using System; using System.Windows.Automation; using MS.Win32; namespace MS.Internal.AutomationProxies { class ToolbarItemAsMenuItem : ToolbarItem { // ----------------------------------------------------- // // Constructors // // ----------------------------------------------------- #region Constructors internal ToolbarItemAsMenuItem(IntPtr hwnd, ProxyFragment parent, int item, int idCommand, Accessible acc) : base(hwnd, parent, item, idCommand) { _acc = acc; // Set the control type based on the IAccessible role. AccessibleRole role = acc.Role; if (role == AccessibleRole.MenuItem) { _cControlType = ControlType.MenuItem; } else { System.Diagnostics.Debug.Assert(false, "Unexpected role " + role); } // MenuItems are by default KeyboardFocusable. _fIsKeyboardFocusable = true; } #endregion // ------------------------------------------------------ // // Patterns Implementation // // ----------------------------------------------------- #region ProxySimple Interface // Returns a pattern interface if supported. internal override object GetPatternProvider (AutomationPattern iid) { // Treate these toolbar items as menuitems and only support Invoke or Expand/Collapse patterns. // Invoke Pattern needs to be supported when the item has no children. When the item does have // children it needs to support ExpandCollapse Pattern. // Check if button is a separator if (IsSeparator()) { return null; } // Check if button is disabled if (Misc.ProxySendMessageInt(_hwnd, NativeMethods.TB_ISBUTTONENABLED, new IntPtr(_idCommand), IntPtr.Zero) == 0) { return null; } // Check if button is hidden if (Misc.ProxySendMessageInt(_hwnd, NativeMethods.TB_ISBUTTONHIDDEN, new IntPtr(_idCommand), IntPtr.Zero) != 0) { return null; } // if (iid == InvokePattern.Pattern) { // button is enabled and not hidden and not a separator return this; } // return null; } // Process all the Element Properties internal override object GetElementProperty(AutomationProperty idProp) { if (idProp == AutomationElement.HasKeyboardFocusProperty) { return IsFocused(); } return base.GetElementProperty(idProp); } #endregion // ------------------------------------------------------ // // Private Fields // // ------------------------------------------------------ #region Private Fields Accessible _acc; #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
- EntityDataSourceColumn.cs
- SqlUserDefinedTypeAttribute.cs
- GridEntryCollection.cs
- SystemNetworkInterface.cs
- TakeOrSkipWhileQueryOperator.cs
- DocumentGridContextMenu.cs
- ErrorTolerantObjectWriter.cs
- BoundingRectTracker.cs
- SingleObjectCollection.cs
- DropDownList.cs
- DashStyle.cs
- DataServiceRequestArgs.cs
- WindowsFormsSectionHandler.cs
- ExceptionUtil.cs
- AssemblyCollection.cs
- Line.cs
- SimpleHandlerBuildProvider.cs
- ErrorLog.cs
- DefaultValueTypeConverter.cs
- StrokeRenderer.cs
- SiteMapNodeItemEventArgs.cs
- _SafeNetHandles.cs
- MessageEncoderFactory.cs
- HttpContextServiceHost.cs
- WebPartUtil.cs
- ConnectionManagementElement.cs
- KeyGestureConverter.cs
- ZipIOExtraFieldElement.cs
- TagPrefixInfo.cs
- Opcode.cs
- TempFiles.cs
- SByte.cs
- XmlAttributes.cs
- ControlBindingsCollection.cs
- TextReader.cs
- DesignTimeTemplateParser.cs
- PeerNameRegistration.cs
- _UncName.cs
- Rect3DValueSerializer.cs
- CircleHotSpot.cs
- WindowsTooltip.cs
- WebPartCollection.cs
- HierarchicalDataBoundControlAdapter.cs
- RowTypeElement.cs
- ToolStripOverflowButton.cs
- FactoryRecord.cs
- IisTraceListener.cs
- ContainerUtilities.cs
- EventRoute.cs
- XmlSchemaValidationException.cs
- TextServicesCompartmentEventSink.cs
- DecimalAnimation.cs
- ElementFactory.cs
- HandleCollector.cs
- VisualTreeHelper.cs
- CodeAccessPermission.cs
- GPStream.cs
- DataTransferEventArgs.cs
- CellConstantDomain.cs
- WebPartRestoreVerb.cs
- NamedPipeConnectionPoolSettings.cs
- BuildProvider.cs
- ToolStripItemEventArgs.cs
- ToolstripProfessionalRenderer.cs
- ButtonPopupAdapter.cs
- ProcessStartInfo.cs
- WebPermission.cs
- SimpleBitVector32.cs
- CaretElement.cs
- DrawingBrush.cs
- DocComment.cs
- TreeBuilderXamlTranslator.cs
- AsyncPostBackErrorEventArgs.cs
- LinqDataSourceView.cs
- CompiledQuery.cs
- Visitor.cs
- MissingManifestResourceException.cs
- UrlMappingCollection.cs
- EntityDataSourceWrapperCollection.cs
- ItemList.cs
- XmlSchemaComplexType.cs
- NonClientArea.cs
- CalculatedColumn.cs
- HtmlWindowCollection.cs
- LinqDataSourceContextEventArgs.cs
- ContentElement.cs
- DeclaredTypeValidatorAttribute.cs
- CacheDependency.cs
- TaskFormBase.cs
- PopupRootAutomationPeer.cs
- IntegerValidator.cs
- ImageCodecInfoPrivate.cs
- Operators.cs
- NumericPagerField.cs
- XmlWriterSettings.cs
- DescendantBaseQuery.cs
- Visitor.cs
- DelegateSerializationHolder.cs
- GradientBrush.cs
- X509AudioLogo.cs