Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 winform 中使用 Microsoft Web Browser COM,但它的Name属性是灰色的,我无法更改它。默认名称是axWebBrowser1,老实说,它看起来不像一个好名字!知道如何更改此名称吗?
Name
axWebBrowser1
如果您查看 Designer.cs 文件,您将看到:
private AxSHDocVw.AxWebBrowser axWebBrowser1;
您可以将名称更改为您想要的名称,我会确保您使用重命名选项,以便更改所有引用。
private AxSHDocVw.AxWebBrowser WebBrowser;