16 lines
258 B
C#
16 lines
258 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UniversalEditor.UserInterface
|
|
{
|
|
public enum CommandDisplayStyle
|
|
{
|
|
None = 0,
|
|
ImageOnly,
|
|
ImageAndText,
|
|
TextOnly
|
|
}
|
|
}
|