摘要:
方式一:using System.ComponentModel;private bool IsInDesignMode{get { return DesignerProperties.GetIsInDesignMode(this);}}备注:此方式适用于当前对象在设计器中查看,而且是DependenceObject类型对象。注意:如果该对象被继续的话,则在设计器中查看时结果返回会为False。方式二:using System.ComponentModel;private bool IsInDesignMode{return DesignerProperties.GetIsInDesignMod 阅读全文