您的位置:首页 > 运维架构

关于PropertyGrid的使用几篇好文

2009-02-22 22:44 309 查看
充分利用.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/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: