Click here to Skip to main content
15,881,812 members
Articles / Multimedia / GDI+

Pretty IE Toolbar in C#

Rate me:
Please Sign up or sign in to vote.
4.89/5 (39 votes)
9 Sep 2008CPOL5 min read 173.3K   4.8K   121  
The article describes the work principles and ways of use of IEToolbarEngine. This is a toolbar for Internet Explorer, which has a reusable architecture.
using System;
using System.Xml;
using System.Collections.Generic;
using System.Text;

namespace IEToolbarEngine
{
    /// <summary>
    /// Element type
    /// </summary>
    public enum ToolbarItemType
    {
        Unknown = 0,
        Link,
        LinkList,
        RssTicker,
        SearchBox,
        Widget,
        MainMenu,
    };

    /// <summary>
    /// Element interface.
    /// </summary>
    public interface IToolbarItem : IDisposable
    {
        /// <summary>
        /// Visibylity.
        /// </summary>
        bool Visible
        {
            get;
            set;
        }

        /// <summary>
        /// Type identifier
        /// </summary>
        ToolbarItemType TypeID
        {
            get;            
        }

        /// <summary>
        /// State clearing.
        /// </summary>
        void Reset ();
    }    
}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Russian Federation Russian Federation
Alexandr Golovanov is a .NET developer at KB_Soft Group, an offshore software development company located in Russia, Novosibirsk. Here he has worked
on various .NET projects.

Comments and Discussions