mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
76 lines
2.5 KiB
C#
76 lines
2.5 KiB
C#
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|||
|
{
|
|||
|
partial class DrawLineOptionsPanel
|
|||
|
{
|
|||
|
/// <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 Component 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()
|
|||
|
{
|
|||
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|||
|
this.continuousdrawing = new System.Windows.Forms.ToolStripButton();
|
|||
|
this.toolStrip1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// toolStrip1
|
|||
|
//
|
|||
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.continuousdrawing});
|
|||
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.toolStrip1.Name = "toolStrip1";
|
|||
|
this.toolStrip1.Size = new System.Drawing.Size(200, 25);
|
|||
|
this.toolStrip1.TabIndex = 8;
|
|||
|
this.toolStrip1.Text = "toolStrip1";
|
|||
|
//
|
|||
|
// continuousdrawing
|
|||
|
//
|
|||
|
this.continuousdrawing.CheckOnClick = true;
|
|||
|
this.continuousdrawing.Image = global::CodeImp.DoomBuilder.BuilderModes.Properties.Resources.Repeat;
|
|||
|
this.continuousdrawing.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
this.continuousdrawing.Name = "continuousdrawing";
|
|||
|
this.continuousdrawing.Size = new System.Drawing.Size(135, 22);
|
|||
|
this.continuousdrawing.Text = "Continuous drawing";
|
|||
|
this.continuousdrawing.CheckedChanged += new System.EventHandler(this.continuousdrawing_CheckedChanged);
|
|||
|
//
|
|||
|
// DrawLineOptionsPanel
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.toolStrip1);
|
|||
|
this.Name = "DrawLineOptionsPanel";
|
|||
|
this.Size = new System.Drawing.Size(200, 60);
|
|||
|
this.toolStrip1.ResumeLayout(false);
|
|||
|
this.toolStrip1.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|||
|
private System.Windows.Forms.ToolStripButton continuousdrawing;
|
|||
|
}
|
|||
|
}
|