📄 mainform.designer.cs
字号:
namespace MySudoku
{
partial class MainForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.generateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.x4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.x9ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.x16ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.x25ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.levelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.easyToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.mediumToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.hardToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.randomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearButton = new System.Windows.Forms.Button();
this.SolveButton = new System.Windows.Forms.Button();
this.ClearSolButton = new System.Windows.Forms.Button();
this.LogText = new System.Windows.Forms.RichTextBox();
this.GenGridButton = new System.Windows.Forms.Button();
this.ExitButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.AllCon = new System.Windows.Forms.CheckBox();
this.ConPropList = new System.Windows.Forms.CheckedListBox();
this.label4 = new System.Windows.Forms.Label();
this.AllVals = new System.Windows.Forms.CheckBox();
this.AllVar = new System.Windows.Forms.CheckBox();
this.ValList = new System.Windows.Forms.CheckedListBox();
this.VarList = new System.Windows.Forms.CheckedListBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.GridLevelCombo = new System.Windows.Forms.ComboBox();
this.GridSizeCombo = new System.Windows.Forms.ComboBox();
this.ClearLogButton = new System.Windows.Forms.Button();
this.timoutCombo = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.menuStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.generateToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(680, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "File";
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// generateToolStripMenuItem
//
this.generateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.sizeToolStripMenuItem,
this.levelToolStripMenuItem,
this.toolStripSeparator1,
this.randomToolStripMenuItem});
this.generateToolStripMenuItem.Name = "generateToolStripMenuItem";
this.generateToolStripMenuItem.Size = new System.Drawing.Size(64, 20);
this.generateToolStripMenuItem.Text = "Generate";
//
// sizeToolStripMenuItem
//
this.sizeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.x4ToolStripMenuItem,
this.x9ToolStripMenuItem,
this.x16ToolStripMenuItem,
this.x25ToolStripMenuItem});
this.sizeToolStripMenuItem.Name = "sizeToolStripMenuItem";
this.sizeToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
this.sizeToolStripMenuItem.Text = "Size";
//
// x4ToolStripMenuItem
//
this.x4ToolStripMenuItem.Name = "x4ToolStripMenuItem";
this.x4ToolStripMenuItem.Size = new System.Drawing.Size(104, 22);
this.x4ToolStripMenuItem.Text = "4x4";
this.x4ToolStripMenuItem.Click += new System.EventHandler(this.x4ToolStripMenuItem_Click);
//
// x9ToolStripMenuItem
//
this.x9ToolStripMenuItem.Name = "x9ToolStripMenuItem";
this.x9ToolStripMenuItem.Size = new System.Drawing.Size(104, 22);
this.x9ToolStripMenuItem.Text = "9x9";
this.x9ToolStripMenuItem.Click += new System.EventHandler(this.x9ToolStripMenuItem_Click);
//
// x16ToolStripMenuItem
//
this.x16ToolStripMenuItem.Name = "x16ToolStripMenuItem";
this.x16ToolStripMenuItem.Size = new System.Drawing.Size(104, 22);
this.x16ToolStripMenuItem.Text = "16x16";
this.x16ToolStripMenuItem.Click += new System.EventHandler(this.x16ToolStripMenuItem_Click);
//
// x25ToolStripMenuItem
//
this.x25ToolStripMenuItem.Checked = true;
this.x25ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.x25ToolStripMenuItem.Name = "x25ToolStripMenuItem";
this.x25ToolStripMenuItem.Size = new System.Drawing.Size(104, 22);
this.x25ToolStripMenuItem.Text = "25x25";
this.x25ToolStripMenuItem.Click += new System.EventHandler(this.x25ToolStripMenuItem_Click);
//
// levelToolStripMenuItem
//
this.levelToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.easyToolStripMenuItem1,
this.mediumToolStripMenuItem1,
this.hardToolStripMenuItem1});
this.levelToolStripMenuItem.Name = "levelToolStripMenuItem";
this.levelToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
this.levelToolStripMenuItem.Text = "Level";
//
// easyToolStripMenuItem1
//
this.easyToolStripMenuItem1.Name = "easyToolStripMenuItem1";
this.easyToolStripMenuItem1.Size = new System.Drawing.Size(110, 22);
this.easyToolStripMenuItem1.Text = "Easy";
this.easyToolStripMenuItem1.Click += new System.EventHandler(this.easyToolStripMenuItem1_Click);
//
// mediumToolStripMenuItem1
//
this.mediumToolStripMenuItem1.Name = "mediumToolStripMenuItem1";
this.mediumToolStripMenuItem1.Size = new System.Drawing.Size(110, 22);
this.mediumToolStripMenuItem1.Text = "Medium";
this.mediumToolStripMenuItem1.Click += new System.EventHandler(this.mediumToolStripMenuItem1_Click);
//
// hardToolStripMenuItem1
//
this.hardToolStripMenuItem1.Checked = true;
this.hardToolStripMenuItem1.CheckState = System.Windows.Forms.CheckState.Checked;
this.hardToolStripMenuItem1.Name = "hardToolStripMenuItem1";
this.hardToolStripMenuItem1.Size = new System.Drawing.Size(110, 22);
this.hardToolStripMenuItem1.Text = "Hard";
this.hardToolStripMenuItem1.Click += new System.EventHandler(this.hardToolStripMenuItem1_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(110, 6);
//
// randomToolStripMenuItem
//
this.randomToolStripMenuItem.Name = "randomToolStripMenuItem";
this.randomToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
this.randomToolStripMenuItem.Text = "Random";
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20);
this.helpToolStripMenuItem.Text = "Help";
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.aboutToolStripMenuItem.Text = "About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// ClearButton
//
this.ClearButton.Location = new System.Drawing.Point(521, 146);
this.ClearButton.Name = "ClearButton";
this.ClearButton.Size = new System.Drawing.Size(54, 23);
this.ClearButton.TabIndex = 1;
this.ClearButton.Text = "Clear All";
this.ClearButton.UseVisualStyleBackColor = true;
this.ClearButton.Click += new System.EventHandler(this.ClearButton_Click);
//
// SolveButton
//
this.SolveButton.Location = new System.Drawing.Point(15, 146);
this.SolveButton.Name = "SolveButton";
this.SolveButton.Size = new System.Drawing.Size(128, 23);
this.SolveButton.TabIndex = 2;
this.SolveButton.Text = "Execute";
this.SolveButton.UseVisualStyleBackColor = true;
this.SolveButton.Click += new System.EventHandler(this.SolveButton_Click);
//
// ClearSolButton
//
this.ClearSolButton.Location = new System.Drawing.Point(435, 146);
this.ClearSolButton.Name = "ClearSolButton";
this.ClearSolButton.Size = new System.Drawing.Size(80, 23);
this.ClearSolButton.TabIndex = 4;
this.ClearSolButton.Text = "Clear Solution";
this.ClearSolButton.UseVisualStyleBackColor = true;
this.ClearSolButton.Click += new System.EventHandler(this.ClearSolButton_Click);
//
// LogText
//
this.LogText.Location = new System.Drawing.Point(15, 80);
this.LogText.Name = "LogText";
this.LogText.Size = new System.Drawing.Size(631, 60);
this.LogText.TabIndex = 9;
this.LogText.Text = "";
//
// GenGridButton
//
this.GenGridButton.Location = new System.Drawing.Point(192, 146);
this.GenGridButton.Name = "GenGridButton";
this.GenGridButton.Size = new System.Drawing.Size(98, 23);
this.GenGridButton.TabIndex = 10;
this.GenGridButton.Text = "Random Grid";
this.GenGridButton.UseVisualStyleBackColor = true;
this.GenGridButton.Click += new System.EventHandler(this.GenGridButton_Click);
//
// ExitButton
//
this.ExitButton.BackColor = System.Drawing.Color.LightSteelBlue;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -