Click here to Skip to main content
15,896,557 members
Articles / Programming Languages / C#

Visual browsing of alternative data-streams in Windows Explorer

Rate me:
Please Sign up or sign in to vote.
4.82/5 (27 votes)
5 Dec 20053 min read 160.2K   5.5K   83  
ADSDetector information with code examples.
// Pavel Zolnikov[http://www.codeproject.com/script/profile/whos_who.asp?id=35980], 2002

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

namespace BandObjects
{
	/// <summary>
	/// Represents different styles of a band object.
	/// </summary>
	[Flags]
	[Serializable]
	[ComVisible(false)]
	public enum BandObjectStyles : int
	{
		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>
	[ComVisible(false)]
	[AttributeUsage(AttributeTargets.Class)]
	public sealed class BandObjectAttribute : System.Attribute
	{
		public BandObjectAttribute(){}

		public BandObjectAttribute(string name, BandObjectStyles style)
		{
			Name = name;
			Style = style;
		}
		public BandObjectStyles 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 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
Web Developer
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions