Click here to Skip to main content
15,895,777 members
Articles / Programming Languages / C#

Extended Interface for Toolbars

Rate me:
Please Sign up or sign in to vote.
4.88/5 (27 votes)
10 Apr 20023 min read 193.4K   388   87  
This extension allows toolbar buttons to call functions automatically
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>StatusMessaging</name>
    </assembly>
    <members>
        <member name="T:ExtendedInterface.StatusMessage">
            <summary>
             Extended Interface to allow status messages from a menu item to appear in the status bar automatically
            </summary>
        </member>
        <member name="M:ExtendedInterface.StatusMessage.SetStatusMessage(System.ComponentModel.Component,System.String)">
            <summary>
             Assign the message that will appear in the StatusBarPanel when a MenuItem is selected
            </summary>
        </member>
        <member name="M:ExtendedInterface.StatusMessage.GetStatusMessage(System.ComponentModel.Component)">
            <summary>
             Retrieve the message that will appear in the StatusBarPanel when a MenuItem is selected
            </summary>
        </member>
        <member name="M:ExtendedInterface.StatusMessage.CanExtend(System.Object)">
            <summary>
             Definition of the components that will be extended
            </summary>
        </member>
        <member name="P:ExtendedInterface.StatusMessage.StatusBar">
            <summary>
             Assign the StatusBarPanel that will display the menu's message
            </summary>
        </member>
        <member name="T:ExtendedInterface.ToolbarFunction">
            <summary>
             Extended Interface that allows the programmer to assign each ToolBarButton to function like a MenuItem was selected
            </summary>
        </member>
        <member name="M:ExtendedInterface.ToolbarFunction.SetToolbarFunction(System.ComponentModel.Component,System.Windows.Forms.MenuItem)">
            <summary>
             Set each ToolBarButton to a specific MenuItem
            </summary>
        </member>
        <member name="M:ExtendedInterface.ToolbarFunction.GetToolbarFunction(System.ComponentModel.Component)">
            <summary>
             Return the MenuItem that is assigned to each ToolBarButton
            </summary>
        </member>
        <member name="M:ExtendedInterface.ToolbarFunction.CanExtend(System.Object)">
            <summary>
             Definition of the components that will be extended
            </summary>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Founder Zombies With Coffee, LLC
United States United States
Phillip has been a programmer long enough to remember cutting paper strip code out of Dr. Dobbs and running them thru a mechanical decoder to avoid typing in the samples.

Comments and Discussions