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.
如何重命名已创建的 Windows 窗体的名称?目前,它的默认名称是Form1,当应用程序运行时,它的名称显示在窗口的左上角。 如何将此文本重命名为MyForm?
Form1
MyForm
重构会更改 .cs 文件的名称,但窗口中的文本不会更改。此外,我尝试使用 更改表单Project->Properties->Browse to the location of the .ico file的默认图标,但默认图标没有改变。为什么那行不通?
Project->Properties->Browse to the location of the .ico file
您需要更改表单的Text属性;
Text
这可以通过属性或在代码中完成;
或者(来自构造函数)
this.Text = "MyForm";
希望这可以帮助?
在设计器模式下更改Text表单的属性。
在设计器模式下更改窗体的Text 属性。