Form1.Designer.cs
namespace Math
{
partial class Form1
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param>マネージド リソースを破棄する場合は true を指定し、その他の場合は false を指定します。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.richTextBox2 = new System.Windows.Forms.RichTextBox();
this.richTextBoxResults = new System.Windows.Forms.RichTextBox();
this.labelArithmetic = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.buttonStart = new System.Windows.Forms.Button();
this.buttonMatching = new System.Windows.Forms.Button();
this.textBoxJug = new System.Windows.Forms.TextBox();
this.radioButtonAddition = new System.Windows.Forms.RadioButton();
this.radioButtonSubtraction = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButtonDivision = new System.Windows.Forms.RadioButton();
this.radioButtonMultiplication = new System.Windows.Forms.RadioButton();
this.labelScore = new System.Windows.Forms.Label();
this.buttonScoreClear = new System.Windows.Forms.Button();
this.richTextBoxRemainder = new System.Windows.Forms.RichTextBox();
this.labelRemainder = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// richTextBox1
//
this.richTextBox1.Enabled = false;
this.richTextBox1.Font = new System.Drawing.Font("MS UI Gothic", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.richTextBox1.Location = new System.Drawing.Point(52, 109);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
this.richTextBox1.Size = new System.Drawing.Size(70, 50);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.TabStop = false;
this.richTextBox1.Text = "999";
this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RichTextBox1_KeyDown);
//
// richTextBox2
//
this.richTextBox2.Enabled = false;
this.richTextBox2.Font = new System.Drawing.Font("MS UI Gothic", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.richTextBox2.Location = new System.Drawing.Point(173, 109);
this.richTextBox2.Name = "richTextBox2";
this.richTextBox2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.richTextBox2.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
this.richTextBox2.Size = new System.Drawing.Size(70, 50);
this.richTextBox2.TabIndex = 1;
this.richTextBox2.Text = "999";
this.richTextBox2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RichTextBox2_KeyDown);
//
// richTextBoxResults
//
this.richTextBoxResults.Enabled = false;
this.richTextBoxResults.Font = new System.Drawing.Font("MS UI Gothic", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.richTextBoxResults.Location = new System.Drawing.Point(326, 109);
this.richTextBoxResults.Name = "richTextBoxResults";
this.richTextBoxResults.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.richTextBoxResults.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
this.richTextBoxResults.Size = new System.Drawing.Size(90, 50);
this.richTextBoxResults.TabIndex = 2;
this.richTextBoxResults.Text = "9999";
this.richTextBoxResults.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RichTextBoxResults_KeyDown);
//
// labelArithmetic
//
this.labelArithmetic.AutoSize = true;
this.labelArithmetic.Font = new System.Drawing.Font("MS UI Gothic", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.labelArithmetic.Location = new System.Drawing.Point(128, 121);
this.labelArithmetic.Name = "labelArithmetic";
this.labelArithmetic.Size = new System.Drawing.Size(27, 27);
this.labelArithmetic.TabIndex = 3;
this.labelArithmetic.Text = "+";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("MS UI Gothic", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.label3.Location = new System.Drawing.Point(278, 121);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(40, 27);
this.label3.TabIndex = 5;
this.label3.Text = "=";
//
// buttonStart
//
this.buttonStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
this.buttonStart.Font = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.buttonStart.Location = new System.Drawing.Point(99, 190);
this.buttonStart.Name = "buttonStart";
this.buttonStart.Size = new System.Drawing.Size(94, 33);
this.buttonStart.TabIndex = 0;
this.buttonStart.Text = "スタート";
this.buttonStart.UseVisualStyleBackColor = false;
this.buttonStart.Click += new System.EventHandler(this.ButtonStart_Click);
//
// buttonMatching
//
this.buttonMatching.BackColor = System.Drawing.Color.Red;
this.buttonMatching.Font = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.buttonMatching.Location = new System.Drawing.Point(341, 190);
this.buttonMatching.Name = "buttonMatching";
this.buttonMatching.Size = new System.Drawing.Size(89, 33);
this.buttonMatching.TabIndex = 1;
this.buttonMatching.Text = "答え合わせ";
this.buttonMatching.UseVisualStyleBackColor = false;
this.buttonMatching.Click += new System.EventHandler(this.ButtonMatching_Click);
//
// textBoxJug
//
this.textBoxJug.BackColor = System.Drawing.Color.Yellow;
this.textBoxJug.Enabled = false;
this.textBoxJug.Font = new System.Drawing.Font("MS UI Gothic", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.textBoxJug.Location = new System.Drawing.Point(99, 244);
this.textBoxJug.Name = "textBoxJug";
this.textBoxJug.Size = new System.Drawing.Size(366, 34);
this.textBoxJug.TabIndex = 8;
this.textBoxJug.Text = "足し算=>スタートを押してね";
//
// radioButtonAddition
//
this.radioButtonAddition.AutoSize = true;
this.radioButtonAddition.Checked = true;
this.radioButtonAddition.Font = new System.Drawing.Font("MS UI Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.radioButtonAddition.Location = new System.Drawing.Point(6, 13);
this.radioButtonAddition.Name = "radioButtonAddition";
this.radioButtonAddition.Size = new System.Drawing.Size(96, 28);
this.radioButtonAddition.TabIndex = 9;
this.radioButtonAddition.TabStop = true;
this.radioButtonAddition.Text = "足し算";
this.radioButtonAddition.UseVisualStyleBackColor = true;
this.radioButtonAddition.CheckedChanged += new System.EventHandler(this.RadioButtonAddition_CheckedChanged);
//
// radioButtonSubtraction
//
this.radioButtonSubtraction.AutoSize = true;
this.radioButtonSubtraction.Font = new System.Drawing.Font("MS UI Gothic", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.radioButtonSubtraction.Location = new System.Drawing.Point(108, 13);
this.radioButtonSubtraction.Name = "radioButtonSubtraction";
this.radioButtonSubtraction.Size = new System.Drawing.Size(97, 28);
this.radioButtonSubtraction.TabIndex = 10;
this.radioButtonSubtraction.Text = "引き算";
this.radioButtonSubtraction.UseVisualStyleBackColor = true;
this.radioButtonSubtraction.CheckedChanged += new System.EventHandler(this.RadioButtonSubtraction_CheckedChanged);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButtonDivision);
this.groupBox1.Controls.Add(this.radioButtonMultiplication);
this.groupBox1.Controls.Add(this.radioButtonAddition);
this.groupBox1.Controls.Add(this.radioButtonSubtraction);
this.groupBox1.Location = new System.Drawing.Point(77, 22);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(408, 47);
this.groupBox1.TabIndex = 11;
this.groupBox1.TabStop = false;
//
// radioButtonDivision
//
this.radioButtonDivision.AutoSize = true;
this.radioButtonDivision.Font = new System.Drawing.Font("MS UI Gothic", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.radioButtonDivision.Location = new System.Drawing.Point(313, 13);
this.radioButtonDivision.Name = "radioButtonDivision";
this.radioButtonDivision.Size = new System.Drawing.Size(91, 28);
this.radioButtonDivision.TabIndex = 12;
this.radioButtonDivision.TabStop = true;
this.radioButtonDivision.Text = "割り算";
this.radioButtonDivision.UseVisualStyleBackColor = true;
this.radioButtonDivision.CheckedChanged += new System.EventHandler(this.RadioButtonDivision_CheckedChanged);
//
// radioButtonMultiplication
//
this.radioButtonMultiplication.AutoSize = true;
this.radioButtonMultiplication.Font = new System.Drawing.Font("MS UI Gothic", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.radioButtonMultiplication.Location = new System.Drawing.Point(211, 13);
this.radioButtonMultiplication.Name = "radioButtonMultiplication";
this.radioButtonMultiplication.Size = new System.Drawing.Size(96, 28);
this.radioButtonMultiplication.TabIndex = 11;
this.radioButtonMultiplication.TabStop = true;
this.radioButtonMultiplication.Text = "掛け算";
this.radioButtonMultiplication.UseVisualStyleBackColor = true;
this.radioButtonMultiplication.CheckedChanged += new System.EventHandler(this.RadioButtonMultiplication_CheckedChanged);
//
// labelScore
//
this.labelScore.AutoSize = true;
this.labelScore.Font = new System.Drawing.Font("MS UI Gothic", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.labelScore.Location = new System.Drawing.Point(101, 300);
this.labelScore.Name = "labelScore";
this.labelScore.Size = new System.Drawing.Size(205, 24);
this.labelScore.TabIndex = 12;
this.labelScore.Text = "0問:正解0 間違い0";
//
// buttonScoreClear
//
this.buttonScoreClear.Font = new System.Drawing.Font("MS UI Gothic", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.buttonScoreClear.Location = new System.Drawing.Point(343, 291);
this.buttonScoreClear.Name = "buttonScoreClear";
this.buttonScoreClear.Size = new System.Drawing.Size(122, 33);
this.buttonScoreClear.TabIndex = 13;
this.buttonScoreClear.Text = "成績クリア";
this.buttonScoreClear.UseVisualStyleBackColor = true;
this.buttonScoreClear.Click += new System.EventHandler(this.ButtonScoreClear_Click);
//
// richTextBoxRemainder
//
this.richTextBoxRemainder.Enabled = false;
this.richTextBoxRemainder.Font = new System.Drawing.Font("MS UI Gothic", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.richTextBoxRemainder.Location = new System.Drawing.Point(461, 109);
this.richTextBoxRemainder.Name = "richTextBoxRemainder";
this.richTextBoxRemainder.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.richTextBoxRemainder.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
this.richTextBoxRemainder.Size = new System.Drawing.Size(67, 50);
this.richTextBoxRemainder.TabIndex = 14;
this.richTextBoxRemainder.Text = "9";
this.richTextBoxRemainder.Visible = false;
this.richTextBoxRemainder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RichTextBoxRemainder_KeyDown);
//
// labelRemainder
//
this.labelRemainder.AutoSize = true;
this.labelRemainder.Location = new System.Drawing.Point(423, 137);
this.labelRemainder.Name = "labelRemainder";
this.labelRemainder.Size = new System.Drawing.Size(32, 12);
this.labelRemainder.TabIndex = 15;
this.labelRemainder.Text = "あまり";
this.labelRemainder.Visible = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(548, 333);
this.Controls.Add(this.labelRemainder);
this.Controls.Add(this.richTextBoxRemainder);
this.Controls.Add(this.buttonScoreClear);
this.Controls.Add(this.labelScore);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.textBoxJug);
this.Controls.Add(this.buttonMatching);
this.Controls.Add(this.buttonStart);
this.Controls.Add(this.label3);
this.Controls.Add(this.labelArithmetic);
this.Controls.Add(this.richTextBoxResults);
this.Controls.Add(this.richTextBox2);
this.Controls.Add(this.richTextBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "算数:足し算引き算";
this.Load += new System.EventHandler(this.Form1_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.RichTextBox richTextBox2;
private System.Windows.Forms.RichTextBox richTextBoxResults;
private System.Windows.Forms.Label labelArithmetic;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button buttonStart;
private System.Windows.Forms.Button buttonMatching;
private System.Windows.Forms.TextBox textBoxJug;
private System.Windows.Forms.RadioButton radioButtonAddition;
private System.Windows.Forms.RadioButton radioButtonSubtraction;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label labelScore;
private System.Windows.Forms.Button buttonScoreClear;
private System.Windows.Forms.RadioButton radioButtonDivision;
private System.Windows.Forms.RadioButton radioButtonMultiplication;
private System.Windows.Forms.RichTextBox richTextBoxRemainder;
private System.Windows.Forms.Label labelRemainder;
}
}