?? loading.cs
字號:
namespace Codematic
{
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
public class Loading : Form
{
private Container components;
private Label label1;
public Loading()
{
this.InitializeComponent();
}
protected override void Dispose(bool disposing)
{
if (disposing && (this.components != null))
{
this.components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.label1 = new Label();
base.SuspendLayout();
this.label1.AutoSize = true;
this.label1.Location = new Point(0x20, 40);
this.label1.Name = "label1";
this.label1.Size = new Size(0x2a, 0x11);
this.label1.TabIndex = 0;
this.label1.Text = "label1";
this.AutoScaleBaseSize = new Size(6, 14);
base.ClientSize = new Size(0x124, 0x68);
base.Controls.Add(this.label1);
this.Cursor = Cursors.WaitCursor;
base.FormBorderStyle = FormBorderStyle.None;
base.Name = "Loading";
base.StartPosition = FormStartPosition.CenterScreen;
this.Text = "Loading";
base.Load += new EventHandler(this.Loading_Load);
base.ResumeLayout(false);
}
private void Loading_Load(object sender, EventArgs e)
{
this.label1.Text = "系統正在加載數據,請稍候....";
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -