using System;
namespace GeoSigma.SigmaDrawerStyle
{
///
/// 列表框属性
///
[AttributeUsage(AttributeTargets.Property)]
public class ListBoxEditorAttribute : Attribute
{
///
/// 标记 ListBox 子类的关键字
///
public string ControlKey { get; }
///
/// Initializes a new instance of the class.
///
/// controlKey
public ListBoxEditorAttribute(string controlKey)
{
ControlKey = controlKey;
}
}
}