This repository has been archived on 2024-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
CDSAE3/CDSAE3_Lian_Lian_Kan/Forms/MenuForm.Designer.cs

124 lines
4.7 KiB
C#
Raw Permalink Normal View History

2024-03-22 09:03:01 +00:00
namespace CDSAE3_Lian_Lian_Kan.Forms
{
2024-04-19 02:00:37 +00:00
partial class MenuForm
2024-03-22 09:03:01 +00:00
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
to_table_of_scores = new Button();
to_settings = new Button();
start_Game = new Button();
to_Challenge_mode = new Button();
2024-04-18 00:38:59 +00:00
mainLabel = new Label();
2024-03-22 09:03:01 +00:00
SuspendLayout();
//
// to_table_of_scores
//
2024-04-18 00:38:59 +00:00
to_table_of_scores.BackColor = Color.White;
2024-03-22 09:03:01 +00:00
to_table_of_scores.Font = new Font("Microsoft YaHei UI", 18F);
2024-04-18 00:38:59 +00:00
to_table_of_scores.Location = new Point(934, 695);
2024-03-22 09:03:01 +00:00
to_table_of_scores.Name = "to_table_of_scores";
to_table_of_scores.Size = new Size(172, 65);
to_table_of_scores.TabIndex = 0;
2024-04-18 00:38:59 +00:00
to_table_of_scores.Text = "分数榜";
2024-03-22 09:03:01 +00:00
to_table_of_scores.UseVisualStyleBackColor = false;
2024-04-18 00:38:59 +00:00
to_table_of_scores.Click += to_table_of_scores_Click;
2024-03-22 09:03:01 +00:00
//
// to_settings
//
2024-04-18 00:38:59 +00:00
to_settings.BackColor = Color.White;
2024-03-22 09:03:01 +00:00
to_settings.Font = new Font("Microsoft YaHei UI", 18F);
2024-04-18 00:38:59 +00:00
to_settings.Location = new Point(934, 549);
2024-03-22 09:03:01 +00:00
to_settings.Name = "to_settings";
to_settings.Size = new Size(172, 65);
to_settings.TabIndex = 1;
to_settings.Text = "设置";
to_settings.UseVisualStyleBackColor = false;
2024-04-18 00:38:59 +00:00
to_settings.Click += to_settings_Click;
2024-03-22 09:03:01 +00:00
//
// start_Game
//
2024-04-18 00:38:59 +00:00
start_Game.BackColor = Color.White;
2024-03-22 09:03:01 +00:00
start_Game.Font = new Font("Microsoft YaHei UI", 18F);
2024-04-18 00:38:59 +00:00
start_Game.Location = new Point(934, 268);
2024-03-22 09:03:01 +00:00
start_Game.Name = "start_Game";
start_Game.Size = new Size(172, 65);
start_Game.TabIndex = 2;
start_Game.Text = "开始游戏";
start_Game.UseVisualStyleBackColor = false;
start_Game.Click += start_Game_Click;
//
// to_Challenge_mode
//
2024-04-18 00:38:59 +00:00
to_Challenge_mode.BackColor = Color.White;
2024-03-22 09:03:01 +00:00
to_Challenge_mode.Font = new Font("Microsoft YaHei UI", 18F);
2024-04-18 00:38:59 +00:00
to_Challenge_mode.Location = new Point(934, 404);
2024-03-22 09:03:01 +00:00
to_Challenge_mode.Name = "to_Challenge_mode";
to_Challenge_mode.Size = new Size(172, 65);
to_Challenge_mode.TabIndex = 3;
to_Challenge_mode.Text = "挑战模式";
to_Challenge_mode.UseVisualStyleBackColor = false;
2024-04-19 02:00:37 +00:00
to_Challenge_mode.Click += to_Challenge_mode_Click;
2024-03-22 09:03:01 +00:00
//
2024-04-18 00:38:59 +00:00
// mainLabel
//
mainLabel.BackColor = Color.FromArgb(0, 0, 0, 0);
mainLabel.Font = new Font("Microsoft YaHei UI", 50F);
mainLabel.ForeColor = Color.FromArgb(255, 192, 128);
mainLabel.Location = new Point(850, 80);
mainLabel.Name = "mainLabel";
mainLabel.Size = new Size(373, 151);
mainLabel.TabIndex = 4;
mainLabel.Text = "连连看";
//
2024-04-19 02:00:37 +00:00
// MenuForm
2024-03-22 09:03:01 +00:00
//
AutoScaleDimensions = new SizeF(11F, 24F);
AutoScaleMode = AutoScaleMode.Font;
2024-04-18 00:38:59 +00:00
BackgroundImage = Properties.Resources.Fern;
BackgroundImageLayout = ImageLayout.Stretch;
2024-03-22 09:03:01 +00:00
ClientSize = new Size(1440, 960);
2024-04-18 00:38:59 +00:00
Controls.Add(mainLabel);
2024-03-22 09:03:01 +00:00
Controls.Add(to_Challenge_mode);
Controls.Add(start_Game);
Controls.Add(to_settings);
Controls.Add(to_table_of_scores);
2024-04-18 00:38:59 +00:00
DoubleBuffered = true;
2024-03-22 09:03:01 +00:00
FormBorderStyle = FormBorderStyle.None;
2024-04-19 02:00:37 +00:00
Name = "MenuForm";
2024-03-22 09:03:01 +00:00
Text = "MenuForm";
ResumeLayout(false);
}
#endregion
private Button to_table_of_scores;
private Button to_settings;
private Button start_Game;
private Button to_Challenge_mode;
2024-04-18 00:38:59 +00:00
private Label mainLabel;
2024-03-22 09:03:01 +00:00
}
}