namespace Yw.WinFrmUI
{
///
/// 隐藏图片的附属属性(propertyGrid中使用)
///
public class HideImageSubProConverter : ImageConverter
{
///
///
///
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return new PropertyDescriptorCollection(null);
}
}
}