WinForm 判断设计时与运行时。_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WinForm 判断设计时与运行时。

WinForm 判断设计时与运行时。

 2013/7/13 19:15:17  灵倚  博客园  我要评论(0)
  • 摘要:采用属性:DesignMode不启作用,如下:if(Site==null||!this.Site.DesignMode){//运行时。。。}解决方案:修改为:if(System.Diagnostics.Process.GetCurrentProcess().ProcessName=="devenv")//判断是否为设计时             
  • 标签:for 运行 设计 winform

采用属性:DesignMode不启作用,如下:

if (Site == null || !this.Site.DesignMode)

//运行时。。。

解决方案:

修改为:

if (System.Diagnostics.Process.GetCurrentProcess().ProcessName == "devenv")//判断是否为设计时
                return;

上一篇: Knockout.js随手记(2) 下一篇: 没有下一篇了!
发表评论
用户名: 匿名