我有一个WinForm应用程序,该应用程序具有绑定到属性的GridControl。该属性为Type类。像这样:
public class AvailableUpdate
{
public int Code { get; set; }
public string Name { get; set; }
public Type Type { get; set; }
}
我的问题是在UI中显示了Type的全名-包括名称空间。如何仅显示名称,减去名称空间?
为了测试起见,我还尝试使用System.ComponentModel.DisplayNameAttribute装饰它:
[DisplayName("aofoej")]
public Type Type { get; set; }
这也不起作用...