-
重置开发环境
菜单栏中选择“工具”/“导入和导出设置”/“重置所有设置”
-
设置行号
菜单栏中选择“工具”/“选项”/“文本编辑器”/“行号”
-
全屏显示
菜单栏中选择“视图”/“全屏显示”
-
为程序设置版本和帮助信息
项目/properties /AssemblyInfo.cs 文件
1 // General Information about an assembly is controlled through the following 2 // set of attributes. Change these attribute values to modify the information 3 // associated with an assembly. 4 [assembly: AssemblyTitle("Startup")] 5 [assembly: AssemblyDescription("")] 6 [assembly: AssemblyConfiguration("")] 7 [assembly: AssemblyCompany("")] 8 [assembly: AssemblyProduct("Startup")] 9 [assembly: AssemblyCopyright("Copyright © 2017")] 10 [assembly: AssemblyTrademark("")] 11 [assembly: AssemblyCulture("")] 12 13 // Setting ComVisible to false makes the types in this assembly not visible 14 // to COM components. If you need to access a type in this assembly from 15 // COM, set the ComVisible attribute to true on that type. 16 [assembly: ComVisible(false)] 17 18 // The following GUID is for the ID of the typelib if this project is exposed to COM 19 [assembly: Guid("548f386c-8206-488b-9bf1-f3f002d0dbf1")] 20 21 // Version information for an assembly consists of the following four values: 22 // 23 // Major Version 24 // Minor Version 25 // Build Number 26 // Revision 27 // 28 // You can specify all the values or you can default the Build and Revision Numbers 29 // by using the '*' as shown below: 30 // [assembly: AssemblyVersion("1.0.*")] 31 [assembly: AssemblyVersion("1.0.0.0")] 32 [assembly: AssemblyFileVersion("1.0.0.0")]