namespace Painter { partial class FormPainter { /// /// 設計工具所需的變數。 /// private System.ComponentModel.IContainer components = null; /// /// 清除任何使用中的資源。 /// /// 如果應該公開 Managed 資源則為 true,否則為 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 設計工具產生的程式碼 /// /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。 /// /// private void InitializeComponent() { this.buttonClear = new System.Windows.Forms.Button(); this.buttonSave = new System.Windows.Forms.Button(); this.pictureBox = new System.Windows.Forms.PictureBox(); this.textBoxAnswer = new System.Windows.Forms.TextBox(); this.buttonAnswer = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); this.SuspendLayout(); // // buttonClear // this.buttonClear.BackColor = System.Drawing.Color.LightGray; this.buttonClear.Location = new System.Drawing.Point(118, 248); this.buttonClear.Name = "buttonClear"; this.buttonClear.Size = new System.Drawing.Size(59, 35); this.buttonClear.TabIndex = 0; this.buttonClear.Text = "清除"; this.buttonClear.UseVisualStyleBackColor = false; this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click); // // buttonSave // this.buttonSave.BackColor = System.Drawing.Color.LightGray; this.buttonSave.Location = new System.Drawing.Point(183, 248); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(59, 35); this.buttonSave.TabIndex = 1; this.buttonSave.Text = "記憶"; this.buttonSave.UseVisualStyleBackColor = false; this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click); // // pictureBox // this.pictureBox.BackColor = System.Drawing.Color.White; this.pictureBox.Dock = System.Windows.Forms.DockStyle.Top; this.pictureBox.Location = new System.Drawing.Point(0, 0); this.pictureBox.Name = "pictureBox"; this.pictureBox.Size = new System.Drawing.Size(253, 242); this.pictureBox.TabIndex = 2; this.pictureBox.TabStop = false; this.pictureBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseDown); this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseMove); this.pictureBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseUp); // // textBoxAnswer // this.textBoxAnswer.Font = new System.Drawing.Font("新細明體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136))); this.textBoxAnswer.Location = new System.Drawing.Point(74, 253); this.textBoxAnswer.Name = "textBoxAnswer"; this.textBoxAnswer.Size = new System.Drawing.Size(38, 27); this.textBoxAnswer.TabIndex = 3; this.textBoxAnswer.Text = "0"; // // buttonAnswer // this.buttonAnswer.BackColor = System.Drawing.Color.LightGray; this.buttonAnswer.Location = new System.Drawing.Point(6, 248); this.buttonAnswer.Name = "buttonAnswer"; this.buttonAnswer.Size = new System.Drawing.Size(62, 35); this.buttonAnswer.TabIndex = 4; this.buttonAnswer.Text = "解答"; this.buttonAnswer.UseVisualStyleBackColor = false; this.buttonAnswer.Click += new System.EventHandler(this.buttonAnswer_Click); // // FormPainter // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.LightGray; this.ClientSize = new System.Drawing.Size(253, 295); this.Controls.Add(this.buttonAnswer); this.Controls.Add(this.textBoxAnswer); this.Controls.Add(this.buttonSave); this.Controls.Add(this.buttonClear); this.Controls.Add(this.pictureBox); this.Name = "FormPainter"; this.Text = "小畫板"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormPainter_FormClosing); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button buttonClear; private System.Windows.Forms.Button buttonSave; private System.Windows.Forms.PictureBox pictureBox; private System.Windows.Forms.TextBox textBoxAnswer; private System.Windows.Forms.Button buttonAnswer; } }