WindowsToolbarAsMenu.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / UIAutomation / Win32Providers / MS / Internal / AutomationProxies / WindowsToolbarAsMenu.cs / 1305600 / WindowsToolbarAsMenu.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: Some applications implement menus with toolbars.  This proxy 
//              will used the IAccessible to expose these toolbars as
//              menus.  This proxy is derived from WindowsToolbar since 
//              the underlying control really is a toolbar and WindowsToolbar
//              knows how to communicate with then underlying toolbar control
//              already.
// 
// History:
//  01/31/2005 : [....] Created 
//--------------------------------------------------------------------------- 

using System; 
using System.Windows.Automation;
using MS.Win32;

namespace MS.Internal.AutomationProxies 
{
    class WindowsToolbarAsMenu : WindowsToolbar 
    { 
        // -----------------------------------------------------
        // 
        // Constructors
        //
        // -----------------------------------------------------
 
        #region Constructors
 
        internal WindowsToolbarAsMenu(IntPtr hwnd, ProxyFragment parent, int item, Accessible acc) 
            : base( hwnd, parent, item )
        { 
            _acc = acc;

            // Set the control type based on the IAccessible role.
            AccessibleRole role = acc.Role; 

            if (role == AccessibleRole.MenuBar) 
            { 
                _cControlType = ControlType.MenuBar;
                _sAutomationId = "MenuBar"; // This string is a non-localizable string 
            }
            else if (role == AccessibleRole.MenuPopup)
            {
                _cControlType = ControlType.Menu; 
                _sAutomationId = "MenuPopup"; // This string is a non-localizable string
            } 
            else 
            {
                System.Diagnostics.Debug.Assert(false, "Unexpected role " + role); 
            }
        }

        #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.
//---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: Some applications implement menus with toolbars.  This proxy 
//              will used the IAccessible to expose these toolbars as
//              menus.  This proxy is derived from WindowsToolbar since 
//              the underlying control really is a toolbar and WindowsToolbar
//              knows how to communicate with then underlying toolbar control
//              already.
// 
// History:
//  01/31/2005 : [....] Created 
//--------------------------------------------------------------------------- 

using System; 
using System.Windows.Automation;
using MS.Win32;

namespace MS.Internal.AutomationProxies 
{
    class WindowsToolbarAsMenu : WindowsToolbar 
    { 
        // -----------------------------------------------------
        // 
        // Constructors
        //
        // -----------------------------------------------------
 
        #region Constructors
 
        internal WindowsToolbarAsMenu(IntPtr hwnd, ProxyFragment parent, int item, Accessible acc) 
            : base( hwnd, parent, item )
        { 
            _acc = acc;

            // Set the control type based on the IAccessible role.
            AccessibleRole role = acc.Role; 

            if (role == AccessibleRole.MenuBar) 
            { 
                _cControlType = ControlType.MenuBar;
                _sAutomationId = "MenuBar"; // This string is a non-localizable string 
            }
            else if (role == AccessibleRole.MenuPopup)
            {
                _cControlType = ControlType.Menu; 
                _sAutomationId = "MenuPopup"; // This string is a non-localizable string
            } 
            else 
            {
                System.Diagnostics.Debug.Assert(false, "Unexpected role " + role); 
            }
        }

        #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

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK