mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 05:41:45 +00:00
69 lines
2.4 KiB
C#
69 lines
2.4 KiB
C#
namespace CodeImp.DoomBuilder.BuilderEffects
|
||
{
|
||
partial class BoolControl
|
||
{
|
||
/// <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.label1 = new System.Windows.Forms.Label();
|
||
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
||
this.SuspendLayout();
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.Location = new System.Drawing.Point(0, 0);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(90, 22);
|
||
this.label1.TabIndex = 8;
|
||
this.label1.Text = "Some bool value:";
|
||
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
||
//
|
||
// checkBox1
|
||
//
|
||
this.checkBox1.AutoSize = true;
|
||
this.checkBox1.Location = new System.Drawing.Point(96, 5);
|
||
this.checkBox1.Name = "checkBox1";
|
||
this.checkBox1.Size = new System.Drawing.Size(15, 14);
|
||
this.checkBox1.TabIndex = 9;
|
||
this.checkBox1.UseVisualStyleBackColor = true;
|
||
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
|
||
//
|
||
// BoolControl
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.checkBox1);
|
||
this.Controls.Add(this.label1);
|
||
this.Name = "BoolControl";
|
||
this.Size = new System.Drawing.Size(266, 22);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.CheckBox checkBox1;
|
||
}
|
||
}
|