?? formparent.cs
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace GPRSDrvWinApp
{
/// <summary>
/// FormParent 的摘要說明。
/// </summary>
public class FormParent : System.Windows.Forms.Form
{
private System.ComponentModel.IContainer components;
protected System.Windows.Forms.ImageList imgLstMain;
protected string ModuleNO; //模塊編號
public FormParent()
{
//
// Windows 窗體設計器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
//
}
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗體設計器生成的代碼
/// <summary>
/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
/// 此方法的內容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormParent));
this.imgLstMain = new System.Windows.Forms.ImageList(this.components);
//
// imgLstMain
//
this.imgLstMain.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
this.imgLstMain.ImageSize = new System.Drawing.Size(16, 16);
this.imgLstMain.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgLstMain.ImageStream")));
this.imgLstMain.TransparentColor = System.Drawing.Color.Transparent;
//
// FormParent
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(416, 273);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "FormParent";
}
#endregion
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -