mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-11 04:41:00 +00:00
113f9c6039
Added UDMF Controls plugin. Added "Snap selected vertices to grid" mode (Found in Edit menu).
93 lines
4.2 KiB
C#
93 lines
4.2 KiB
C#
namespace CodeImp.DoomBuilder.UDMFControls
|
||
{
|
||
partial class ScaleControl
|
||
{
|
||
/// <summary>
|
||
/// Требуется переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing) {
|
||
if (disposing && (components != null)) {
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Обязательный метод для поддержки конструктора - не изменяйте
|
||
/// содержимое данного метода при помощи редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent() {
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||
this.floatSlider2 = new CodeImp.DoomBuilder.UDMFControls.FloatSlider();
|
||
this.floatSlider1 = new CodeImp.DoomBuilder.UDMFControls.FloatSlider();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
||
this.button1.Location = new System.Drawing.Point(6, 38);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(18, 24);
|
||
this.button1.TabIndex = 2;
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
//
|
||
// pictureBox1
|
||
//
|
||
this.pictureBox1.Image = global::CodeImp.DoomBuilder.UDMFControls.Properties.Resources.ScaleLink;
|
||
this.pictureBox1.Location = new System.Drawing.Point(15, 26);
|
||
this.pictureBox1.Name = "pictureBox1";
|
||
this.pictureBox1.Size = new System.Drawing.Size(10, 47);
|
||
this.pictureBox1.TabIndex = 3;
|
||
this.pictureBox1.TabStop = false;
|
||
//
|
||
// floatSlider2
|
||
//
|
||
this.floatSlider2.Location = new System.Drawing.Point(0, 45);
|
||
this.floatSlider2.Name = "floatSlider2";
|
||
this.floatSlider2.ShowLabels = false;
|
||
this.floatSlider2.Size = new System.Drawing.Size(220, 45);
|
||
this.floatSlider2.TabIndex = 1;
|
||
this.floatSlider2.Value = 0F;
|
||
//
|
||
// floatSlider1
|
||
//
|
||
this.floatSlider1.Location = new System.Drawing.Point(0, 0);
|
||
this.floatSlider1.Name = "floatSlider1";
|
||
this.floatSlider1.ShowLabels = true;
|
||
this.floatSlider1.Size = new System.Drawing.Size(220, 45);
|
||
this.floatSlider1.TabIndex = 0;
|
||
this.floatSlider1.Value = 0F;
|
||
//
|
||
// ScaleControl
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.pictureBox1);
|
||
this.Controls.Add(this.floatSlider1);
|
||
this.Controls.Add(this.floatSlider2);
|
||
this.Name = "ScaleControl";
|
||
this.Size = new System.Drawing.Size(220, 94);
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private FloatSlider floatSlider1;
|
||
private FloatSlider floatSlider2;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.PictureBox pictureBox1;
|
||
}
|
||
}
|