📄 splashform.cs
字号:
namespace Codematic
{
using System;
using System.ComponentModel;
using System.Drawing;
using System.Resources;
using System.Windows.Forms;
public class SplashForm : Form
{
private Container components;
internal Label Label1;
internal PictureBox pbLogo;
public SplashForm()
{
this.InitializeComponent();
}
protected override void Dispose(bool disposing)
{
if (disposing && (this.components != null))
{
this.components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
ResourceManager manager = new ResourceManager(typeof(SplashForm));
this.Label1 = new Label();
this.pbLogo = new PictureBox();
base.SuspendLayout();
this.Label1.AccessibleDescription = manager.GetString("Label1.AccessibleDescription");
this.Label1.AccessibleName = manager.GetString("Label1.AccessibleName");
this.Label1.Anchor = (AnchorStyles) manager.GetObject("Label1.Anchor");
this.Label1.AutoSize = (bool) manager.GetObject("Label1.AutoSize");
this.Label1.Dock = (DockStyle) manager.GetObject("Label1.Dock");
this.Label1.Enabled = (bool) manager.GetObject("Label1.Enabled");
this.Label1.Font = (Font) manager.GetObject("Label1.Font");
this.Label1.Image = (Image) manager.GetObject("Label1.Image");
this.Label1.ImageAlign = (ContentAlignment) manager.GetObject("Label1.ImageAlign");
this.Label1.ImageIndex = (int) manager.GetObject("Label1.ImageIndex");
this.Label1.ImeMode = (ImeMode) manager.GetObject("Label1.ImeMode");
this.Label1.Location = (Point) manager.GetObject("Label1.Location");
this.Label1.Name = "Label1";
this.Label1.RightToLeft = (RightToLeft) manager.GetObject("Label1.RightToLeft");
this.Label1.Size = (Size) manager.GetObject("Label1.Size");
this.Label1.TabIndex = (int) manager.GetObject("Label1.TabIndex");
this.Label1.Text = manager.GetString("Label1.Text");
this.Label1.TextAlign = (ContentAlignment) manager.GetObject("Label1.TextAlign");
this.Label1.Visible = (bool) manager.GetObject("Label1.Visible");
this.pbLogo.AccessibleDescription = manager.GetString("pbLogo.AccessibleDescription");
this.pbLogo.AccessibleName = manager.GetString("pbLogo.AccessibleName");
this.pbLogo.Anchor = (AnchorStyles) manager.GetObject("pbLogo.Anchor");
this.pbLogo.BackgroundImage = (Image) manager.GetObject("pbLogo.BackgroundImage");
this.pbLogo.Dock = (DockStyle) manager.GetObject("pbLogo.Dock");
this.pbLogo.Enabled = (bool) manager.GetObject("pbLogo.Enabled");
this.pbLogo.Font = (Font) manager.GetObject("pbLogo.Font");
this.pbLogo.Image = (Image) manager.GetObject("pbLogo.Image");
this.pbLogo.ImeMode = (ImeMode) manager.GetObject("pbLogo.ImeMode");
this.pbLogo.Location = (Point) manager.GetObject("pbLogo.Location");
this.pbLogo.Name = "pbLogo";
this.pbLogo.RightToLeft = (RightToLeft) manager.GetObject("pbLogo.RightToLeft");
this.pbLogo.Size = (Size) manager.GetObject("pbLogo.Size");
this.pbLogo.SizeMode = (PictureBoxSizeMode) manager.GetObject("pbLogo.SizeMode");
this.pbLogo.TabIndex = (int) manager.GetObject("pbLogo.TabIndex");
this.pbLogo.TabStop = false;
this.pbLogo.Text = manager.GetString("pbLogo.Text");
this.pbLogo.Visible = (bool) manager.GetObject("pbLogo.Visible");
base.AccessibleDescription = manager.GetString("$this.AccessibleDescription");
base.AccessibleName = manager.GetString("$this.AccessibleName");
this.AutoScaleBaseSize = (Size) manager.GetObject("$this.AutoScaleBaseSize");
this.AutoScroll = (bool) manager.GetObject("$this.AutoScroll");
base.AutoScrollMargin = (Size) manager.GetObject("$this.AutoScrollMargin");
base.AutoScrollMinSize = (Size) manager.GetObject("$this.AutoScrollMinSize");
this.BackColor = Color.AliceBlue;
this.BackgroundImage = (Image) manager.GetObject("$this.BackgroundImage");
base.ClientSize = (Size) manager.GetObject("$this.ClientSize");
base.ControlBox = false;
base.Controls.Add(this.Label1);
base.Controls.Add(this.pbLogo);
this.Cursor = Cursors.WaitCursor;
base.Enabled = (bool) manager.GetObject("$this.Enabled");
this.Font = (Font) manager.GetObject("$this.Font");
base.FormBorderStyle = FormBorderStyle.SizableToolWindow;
base.Icon = (Icon) manager.GetObject("$this.Icon");
base.ImeMode = (ImeMode) manager.GetObject("$this.ImeMode");
base.Location = (Point) manager.GetObject("$this.Location");
base.MaximizeBox = false;
this.MaximumSize = (Size) manager.GetObject("$this.MaximumSize");
base.MinimizeBox = false;
this.MinimumSize = (Size) manager.GetObject("$this.MinimumSize");
base.Name = "SplashForm";
this.RightToLeft = (RightToLeft) manager.GetObject("$this.RightToLeft");
base.ShowInTaskbar = false;
base.SizeGripStyle = SizeGripStyle.Hide;
base.StartPosition = (FormStartPosition) manager.GetObject("$this.StartPosition");
this.Text = manager.GetString("$this.Text");
base.TopMost = true;
base.ResumeLayout(false);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -