gpt4 book ai didi

c# - Visual Studio IntelliSense 不显示 Control.IsDisposed 属性?

转载 作者:太空狗 更新时间:2023-10-30 00:39:53 24 4
gpt4 key购买 nike

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

enter image description here

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

最佳答案

Control.IsDisposed属性(property)有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 设置来查看高级成员:

Advanced members

关于c# - Visual Studio IntelliSense 不显示 Control.IsDisposed 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32763245/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com