在开发控件时有没有人找到有用的解决DesignMode问题的方法?
问题在于,如果嵌套控件,则DesignMode仅适用于第一级。第二级和更低级别的DesignMode将始终返回FALSE。
标准的hack是查看正在运行的进程的名称,如果它是“DevEnv.EXE”那么它必须是studio,因此DesignMode真的是真的。
问题在于寻找ProcessName通过注册表和其他奇怪的部分工作,最终结果是用户可能没有查看进程名称所需的权限。另外这条奇怪的路线很慢。因此,我们不得不堆积额外的黑客来使用单例,如果在请求进程名称时抛出错误,则假设DesignMode为FALSE。
确定DesignMode的一个很好的干净方法是有序的。暂时让微软在框架内部修复它会更好!
答案 0 :(得分:76)
重新审视这个问题,我现在'发现'有5种不同的方式,如下:
System.ComponentModel.DesignMode property
System.ComponentModel.LicenseManager.UsageMode property
private string ServiceString()
{
if (GetService(typeof(System.ComponentModel.Design.IDesignerHost)) != null)
return "Present";
else
return "Not present";
}
public bool IsDesignerHosted
{
get
{
Control ctrl = this;
while(ctrl != null)
{
if((ctrl.Site != null) && ctrl.Site.DesignMode)
return true;
ctrl = ctrl.Parent;
}
return false;
}
}
public static bool IsInDesignMode()
{
return System.Reflection.Assembly.GetExecutingAssembly()
.Location.Contains("VisualStudio"))
}
为了试图解决所提出的三个解决方案,我创建了一个小测试解决方案 - 有三个项目:
然后我将SubSubControl嵌入SubControl中,然后将其中一个嵌入TestApp.Form中。
此屏幕截图显示了运行时的结果。
此屏幕截图显示了在Visual Studio中打开表单的结果:
结论:似乎没有反射构造函数中中唯一可靠的是LicenseUsage,而唯一一个可靠的在之外 em>构造函数是'IsDesignedHosted'(下面是BlueRaja)
PS:请参阅下面的ToolmakerSteve评论(我尚未测试):“请注意,IsDesignerHosted答案已更新为包含LicenseUsage ...,所以现在测试可以简单地为if(IsDesignerHosted)。替代方法是test LicenseManager in constructor and cache the result。“
答案 1 :(得分:30)
来自this page:
( [编辑2013] 使用@hopla提供的方法编辑在构造函数中工作)
/// <summary>
/// The DesignMode property does not correctly tell you if
/// you are in design mode. IsDesignerHosted is a corrected
/// version of that property.
/// (see https://connect.microsoft.com/VisualStudio/feedback/details/553305
/// and http://stackoverflow.com/a/2693338/238419 )
/// </summary>
public bool IsDesignerHosted
{
get
{
if (LicenseManager.UsageMode == LicenseUsageMode.Designtime)
return true;
Control ctrl = this;
while (ctrl != null)
{
if ((ctrl.Site != null) && ctrl.Site.DesignMode)
return true;
ctrl = ctrl.Parent;
}
return false;
}
}
我已向微软提交了a bug-report;我怀疑它会去任何地方,但无论如何都要投票,因为这显然是一个错误(无论是否“by design”)。
答案 2 :(得分:29)
为什么不检查LicenseManager.UsageMode。 此属性的值可以是LicenseUsageMode.Runtime或LicenseUsageMode.Designtime。
您是否希望代码仅在运行时运行,请使用以下代码:
if (LicenseManager.UsageMode == LicenseUsageMode.Runtime)
{
bla bla bla...
}
答案 3 :(得分:7)
这是我在表单中使用的方法:
/// <summary>
/// Gets a value indicating whether this instance is in design mode.
/// </summary>
/// <value>
/// <c>true</c> if this instance is in design mode; otherwise, <c>false</c>.
/// </value>
protected bool IsDesignMode
{
get { return DesignMode || LicenseManager.UsageMode == LicenseUsageMode.Designtime; }
}
这样,即使DesignMode或LicenseManager属性中的任何一个失败,结果也是正确的。
答案 4 :(得分:3)
我使用LicenseManager方法,但缓存构造函数中的值,以便在实例的整个生命周期内使用。
public MyUserControl()
{
InitializeComponent();
m_IsInDesignMode = (LicenseManager.UsageMode == LicenseUsageMode.Designtime);
}
private bool m_IsInDesignMode = true;
public bool IsInDesignMode { get { return m_IsInDesignMode; } }
VB版:
Sub New()
InitializeComponent()
m_IsInDesignMode = (LicenseManager.UsageMode = LicenseUsageMode.Designtime)
End Sub
Private ReadOnly m_IsInDesignMode As Boolean = True
Public ReadOnly Property IsInDesignMode As Boolean
Get
Return m_IsInDesignMode
End Get
End Property
答案 5 :(得分:3)
我们成功使用此代码:
public static bool IsRealDesignerMode(this Control c)
{
if (System.ComponentModel.LicenseManager.UsageMode == System.ComponentModel.LicenseUsageMode.Designtime)
return true;
else
{
Control ctrl = c;
while (ctrl != null)
{
if (ctrl.Site != null && ctrl.Site.DesignMode)
return true;
ctrl = ctrl.Parent;
}
return System.Diagnostics.Process.GetCurrentProcess().ProcessName == "devenv";
}
}
答案 6 :(得分:3)
我的建议是优化@ blueraja-danny-pflughoeft reply。 此解决方案不是每次都计算结果,而是仅在第一次计算结果(对象不能将UsageMode从设计更改为运行时)
private bool? m_IsDesignerHosted = null; //contains information about design mode state
/// <summary>
/// The DesignMode property does not correctly tell you if
/// you are in design mode. IsDesignerHosted is a corrected
/// version of that property.
/// (see https://connect.microsoft.com/VisualStudio/feedback/details/553305
/// and https://stackoverflow.com/a/2693338/238419 )
/// </summary>
[Browsable(false)]
public bool IsDesignerHosted
{
get
{
if (m_IsDesignerHosted.HasValue)
return m_IsDesignerHosted.Value;
else
{
if (LicenseManager.UsageMode == LicenseUsageMode.Designtime)
{
m_IsDesignerHosted = true;
return true;
}
Control ctrl = this;
while (ctrl != null)
{
if ((ctrl.Site != null) && ctrl.Site.DesignMode)
{
m_IsDesignerHosted = true;
return true;
}
ctrl = ctrl.Parent;
}
m_IsDesignerHosted = false;
return false;
}
}
}
答案 7 :(得分:2)
我自己从来没有被这个抓住过,但是你不能只是从控件中走回Parent链,看看DesignMode是否设置在你的上方?
答案 8 :(得分:2)
由于所有方法都不可靠(DesignMode,LicenseManager)或高效(进程,递归检查),因此我在程序级别使用public static bool Runtime { get; private set }
并在Main()方法中明确设置它。
答案 9 :(得分:1)
DesignMode是一个私有财产(据我所知)。答案是提供一个暴露DesignMode道具的公共属性。然后,您可以继续备份用户控件链,直到遇到非用户控件或处于设计模式的控件。像这样......
public bool RealDesignMode()
{
if (Parent is MyBaseUserControl)
{
return (DesignMode ? true : (MyBaseUserControl) Parent.RealDesignMode;
}
return DesignMode;
}
所有UserControl都继承自MyBaseUserControl。或者,您可以实现一个公开“RealDeisgnMode”的接口。
请注意,此代码不是实时代码,只是关闭袖口沉思。 :)
答案 10 :(得分:1)
我没有意识到你不能调用Parent.DesignMode(我也在C#中学到了一些关于'protected'的东西......)
这是一个反射版本:(我怀疑将designModeProperty设为静态字段可能会有性能优势)
static bool IsDesignMode(Control control)
{
PropertyInfo designModeProperty = typeof(Component).
GetProperty("DesignMode", BindingFlags.Instance | BindingFlags.NonPublic);
while (designModeProperty != null && control != null)
{
if((bool)designModeProperty.GetValue(control, null))
{
return true;
}
control = control.Parent;
}
return false;
}
答案 11 :(得分:0)
最近我在使用嵌套UserControl时必须在Visual Studio 2017中解决此问题。我结合了上面和其他地方提到的几种方法,然后对代码进行了调整,直到有了一个不错的扩展方法,该方法到目前为止可以接受。它执行一系列检查,并将结果存储在静态布尔变量中,因此每次检查最多只能在运行时执行一次。这个过程可能是过分的,但是却使代码无法在Studio中执行。希望这对某人有帮助。
public static class DesignTimeHelper
{
private static bool? _isAssemblyVisualStudio;
private static bool? _isLicenseDesignTime;
private static bool? _isProcessDevEnv;
private static bool? _mIsDesignerHosted;
/// <summary>
/// Property <see cref="Form.DesignMode"/> does not correctly report if a nested <see cref="UserControl"/>
/// is in design mode. InDesignMode is a corrected that property which .
/// (see https://connect.microsoft.com/VisualStudio/feedback/details/553305
/// and https://stackoverflow.com/a/2693338/238419 )
/// </summary>
public static bool InDesignMode(
this Control userControl,
string source = null)
=> IsLicenseDesignTime
|| IsProcessDevEnv
|| IsExecutingAssemblyVisualStudio
|| IsDesignerHosted(userControl);
private static bool IsExecutingAssemblyVisualStudio
=> _isAssemblyVisualStudio
?? (_isAssemblyVisualStudio = Assembly
.GetExecutingAssembly()
.Location.Contains(value: "VisualStudio"))
.Value;
private static bool IsLicenseDesignTime
=> _isLicenseDesignTime
?? (_isLicenseDesignTime = LicenseManager.UsageMode == LicenseUsageMode.Designtime)
.Value;
private static bool IsDesignerHosted(
Control control)
{
if (_mIsDesignerHosted.HasValue)
return _mIsDesignerHosted.Value;
while (control != null)
{
if (control.Site?.DesignMode == true)
{
_mIsDesignerHosted = true;
return true;
}
control = control.Parent;
}
_mIsDesignerHosted = false;
return false;
}
private static bool IsProcessDevEnv
=> _isProcessDevEnv
?? (_isProcessDevEnv = Process.GetCurrentProcess()
.ProcessName == "devenv")
.Value;
}