mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
77 lines
No EOL
2.6 KiB
C#
Executable file
77 lines
No EOL
2.6 KiB
C#
Executable file
namespace CodeImp.DoomBuilder.SoundPropagationMode
|
|
{
|
|
partial class MenusForm
|
|
{
|
|
/// <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 Windows Form 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.colorconfiguration = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// toolStrip1
|
|
//
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.colorconfiguration});
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
this.toolStrip1.Size = new System.Drawing.Size(284, 25);
|
|
this.toolStrip1.TabIndex = 0;
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// colorconfiguration
|
|
//
|
|
this.colorconfiguration.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.colorconfiguration.Image = global::CodeImp.DoomBuilder.SoundPropagationMode.Properties.Resources.ColorManagement;
|
|
this.colorconfiguration.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.colorconfiguration.Name = "colorconfiguration";
|
|
this.colorconfiguration.Size = new System.Drawing.Size(23, 22);
|
|
this.colorconfiguration.Tag = "soundpropagationcolorconfiguration";
|
|
this.colorconfiguration.Text = "Configure colors";
|
|
this.colorconfiguration.Click += new System.EventHandler(this.InvokeTaggedAction);
|
|
//
|
|
// MenusForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(284, 262);
|
|
this.Controls.Add(this.toolStrip1);
|
|
this.Name = "MenusForm";
|
|
this.Text = "MenuForm";
|
|
this.toolStrip1.ResumeLayout(false);
|
|
this.toolStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|
private System.Windows.Forms.ToolStripButton colorconfiguration;
|
|
}
|
|
} |