- 充分利用.NET 框架的PropertyGrid 控
http://www.yesky.com/112/1626612.shtml
- 开发自己的窗体设计器(PropertyGrid显示中文属性名)
http://space.itpub.net/12639172/viewspace-488958
- 浏览文件属性
Add References: System.Design
private string m_sBgImageFile;
[Editor(typeof(System.Windows.Forms.Design.FileNameEditor), typeof(System.Drawing.Design.UITypeEditor))]
public string BackgroundImageFile //public string 背景图片文件
{
get
{
return m_sBgImageFile;
}
set
{
m_sBgImageFile = value;
}
}
- Globalized Property Grid
http://www.codeguru.com/Csharp/Csharp/cs_controls/propertygrid/article.php/c4795/