Visual Studio IntelliSense 未显示 Control.IsDisposed 属性?

Visual Studio IntelliSense not showing Control.IsDisposed Property?

我有 Visual Studio 2013,我注意到它不会在 IntelliSense 中显示 Control.IsDisposed。我不确定这是否是唯一未显示的内容。其他一切似乎在 IntelliSense 中都显示良好。

我可以很好地使用 IsDisposed 属性,它可以很好地构建和执行。是否有任何原因或任何已知的修复?

Control.IsDisposed property has the EditorBrowseableAttribute 设置为 Advanced,这使得它在 VS 编辑器中不可浏览:

The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.

[
Browsable(false), EditorBrowsable(EditorBrowsableState.Advanced),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
SRDescription(SR.ControlDisposedDescr)
]
public bool IsDisposed {
    get {
        return GetState(STATE_DISPOSED);
    }
}

编辑:

@Glen 指出(谢谢!)您可以通过在工具 -> 选项 -> 文本编辑器 -> C# 中更改 VS 设置来查看高级成员: