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();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// buttonClear
//
this.buttonClear.BackColor = System.Drawing.Color.LightGray;
this.buttonClear.Location = new System.Drawing.Point(49, 248);
this.buttonClear.Name = "buttonClear";
this.buttonClear.Size = new System.Drawing.Size(75, 23);
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(148, 248);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(75, 23);
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(260, 242);
this.pictureBox.TabIndex = 2;
this.pictureBox.TabStop = false;
this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseMove);
this.pictureBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseDown);
this.pictureBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseUp);
//
// 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(260, 278);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.buttonClear);
this.Controls.Add(this.pictureBox);
this.Name = "FormPainter";
this.Text = "小畫板";
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonClear;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.PictureBox pictureBox;
}
}