📄 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 + -