initial oogynize check in _ this actually used to work!

This commit is contained in:
2016-02-14 21:16:31 -08:00
parent b183af5d55
commit 532ea133bc
337 changed files with 30692 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
using System;
using System.Runtime.InteropServices;
using System.Reflection;
namespace Foo.Deskband.BandObject
{
/// <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;
}
}