Click here to Skip to main content
15,891,567 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.8K   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.
//	Copyright Pavel Zolnikov, 2002
//

using System;
using System.Runtime.InteropServices;
using System.Reflection;

namespace BandObjectLib
{
	/// <summary>
	/// Represents different styles of a band object.
	/// </summary>
	[Flags]
	[Serializable]
	public enum BandObjectStyle : uint
	{
		Vertical		= 1,
		Horizontal		= 2,
		ExplorerToolbar = 4,
		TaskbarToolBar	= 8
	}
	
	/// <summary>
	/// Specifies Style of the band object, its Name(displayed in explorer menu) and HelpText(displayed in status bar when menu command selected).
	/// </summary>
    //[AttributeUsage(AttributeTargets.Class)]
    //public class BandObjectAttribute : System.Attribute
    //{
    //    public BandObjectAttribute(){}

    //    public BandObjectAttribute(string name, BandObjectStyle style)
    //    {
    //        Name = name;
    //        Style = style;
    //    }
    //    public BandObjectStyle Style;
    //    public string Name;
    //    public string HelpText;
    //}
}

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