標籤:des style blog http color 使用 os strong
005.為程式設定版本和協助資訊
:
1.建立Windows表單應用程式WindowsFormsApplication1
2.找到AssemblyInfo.cs檔案,編輯下就可以了
using System.Reflection;using System.Runtime.CompilerServices;using System.Runtime.InteropServices;//定義資訊清單的程式集標題自訂屬性[assembly: AssemblyTitle("為程式設定版本和協助資訊")][assembly: AssemblyDescription("")][assembly: AssemblyConfiguration("")]//定義資訊清單的公司名稱自訂屬性[assembly: AssemblyCompany("未來科技")][assembly: AssemblyProduct("為程式設定版本和協助資訊")][assembly: AssemblyCopyright("著作權 © Microsoft 2014")][assembly: AssemblyTrademark("")][assembly: AssemblyCulture("")][assembly: ComVisible(false)][assembly: Guid("50dbbda1-e1e2-4ea6-8e2c-4bdf535bd101")]///指定正在屬性化的程式集的版本//程式集的版本資訊由主要版本、次版本、組建號和修訂編號4個值組成[assembly: AssemblyVersion("1.0.0.0")][assembly: AssemblyFileVersion("1.0.0.0")]
006.設定 Winddows 應用程式啟動表單
1.建立Windows表單應用程式WindowsFormsApplication1
2.在該項目中添加一個 Form2 表單
3.找到 Program.cs 檔案,修改 Application.Run()中的參數來隨意設定啟動表單。
Application.Run(new Form2());
007.統一表單中控制項的字型設定
1.建立Windows表單應用程式WindowsFormsApplication1
2.預設表單 Form1 中添加 3 個 Button 控制項
3.右鍵開啟屬性,可設定字型
008.通過"格式"菜單布局表單
1.建立Windows表單應用程式WindowsFormsApplication1
2.預設表單 Form1 中添加 3 個 Button 控制項
3.選中添加的3個按鈕,在功能表列中依次選擇 “格式”/“水平間距”/“相同間隔”命令使3個 Button 控制項之間的水平間距相同。
4.也可以通過“格式”菜單在表單中設定控制項的對齊、大小以及垂直間距等
設定對齊:
設定控制項大小:
設定垂直間距: