simple question, does anyone know how to detect whether code is executed design-time with WP7? The usual Silverlight solutio开发者_如何学JAVAn of HtmlPage.IsEnabled doesn't work in this context.
Try using the DesignerProperties.IsInDesignTool boolean property.
You will need to import the System.ComponentModel namespace to use this.
精彩评论