namespace Yw.WinFrmUI
{
///
/// 确定是否为允许显示编辑框
///
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class ShowEditorAttribute : Attribute
{
///
///
///
public ShowEditorAttribute(bool showEditor)
{
this.ShowEditor = showEditor;
}
///
///
///
public bool ShowEditor { get; set; }
}
}