namespace DrawPolygon
{
partial class PolygonForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.openPolygonSelectButton = new System.Windows.Forms.RadioButton();
this.closedPolygonSelectButton = new System.Windows.Forms.RadioButton();
this.drawPanel = new System.Windows.Forms.Panel();
this.clearButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// openPolygonSelectButton
//
this.openPolygonSelectButton.AutoSize = true;
this.openPolygonSelectButton.Location = new System.Drawing.Point(298, 52);
this.openPolygonSelectButton.Name = "openPolygonSelectButton";
this.openPolygonSelectButton.Size = new System.Drawing.Size(91, 17);
this.openPolygonSelectButton.TabIndex = 0;
this.openPolygonSelectButton.TabStop = true;
this.openPolygonSelectButton.Text = "Open polygon";
this.openPolygonSelectButton.UseVisualStyleBackColor = true;
this.openPolygonSelectButton.CheckedChanged += new System.EventHandler(this.openPolygonSelectButton_CheckedChanged);
//
// closedPolygonSelectButton
//
this.closedPolygonSelectButton.AutoSize = true;
this.closedPolygonSelectButton.Location = new System.Drawing.Point(298, 86);
this.closedPolygonSelectButton.Name = "closedPolygonSelectButton";
this.closedPolygonSelectButton.Size = new System.Drawing.Size(89, 17);
this.closedPolygonSelectButton.TabIndex = 1;
this.closedPolygonSelectButton.TabStop = true;
this.closedPolygonSelectButton.Text = "Filled polygon";
this.closedPolygonSelectButton.UseVisualStyleBackColor = true;
this.closedPolygonSelectButton.CheckedChanged += new System.EventHandler(this.closedPolygonSelectButton_CheckedChanged);
//
// drawPanel
//
this.drawPanel.Location = new System.Drawing.Point(30, 36);
this.drawPanel.Name = "drawPanel";
this.drawPanel.Size = new System.Drawing.Size(249, 236);
this.drawPanel.TabIndex = 2;
this.drawPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.drawPanel_Paint);
this.drawPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.drawPanel_MouseDown);
//
// clearButton
//
this.clearButton.Location = new System.Drawing.Point(284, 291);
this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(104, 27);
this.clearButton.TabIndex = 3;
this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// PolygonForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(402, 343);
this.Controls.Add(this.clearButton);
this.Controls.Add(this.drawPanel);
this.Controls.Add(this.closedPolygonSelectButton);
this.Controls.Add(this.openPolygonSelectButton);
this.Name = "PolygonForm";
this.Text = "Drawing Polygon";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RadioButton openPolygonSelectButton;
private System.Windows.Forms.RadioButton closedPolygonSelectButton;
private System.Windows.Forms.Panel drawPanel;
private System.Windows.Forms.Button clearButton;
}
}