ErrorListProvider.ForceShowErrors 方法

错误表 窗口显示错误。

命名空间:  Microsoft.VisualStudio.Shell
程序集:  Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)

语法

声明
Public Sub ForceShowErrors
public void ForceShowErrors()

备注

强制错误触发器 " on ",因此,错误会显示在 错误表 窗口。警告和信息性消息不受影响。

示例

[C#]

using System;
using System.Collections;
using System.Diagnostics;
using System.Windows.Forms;
using Microsoft.VisualStudio.Shell;
//Where this refers to an ErrorListProvider object.
/// <summary>
/// Ensure Errors List is visible and listing validation errors.
/// </summary>
public void ShowErrors()
{
this.BringToFront();
this.ForceShowErrors();
}

.NET Framework 安全性

请参见

参考

ErrorListProvider 类

Microsoft.VisualStudio.Shell 命名空间