113 lines
4.7 KiB
C#
113 lines
4.7 KiB
C#
namespace FirstPlugin
|
|
{
|
|
partial class BfresShaderOptionsEditor
|
|
{
|
|
/// <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.textBoxName = new System.Windows.Forms.TextBox();
|
|
this.textBoxValue = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBoxName
|
|
//
|
|
this.textBoxName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.textBoxName.ForeColor = System.Drawing.Color.White;
|
|
this.textBoxName.Location = new System.Drawing.Point(72, 9);
|
|
this.textBoxName.Name = "textBoxName";
|
|
this.textBoxName.Size = new System.Drawing.Size(161, 20);
|
|
this.textBoxName.TabIndex = 0;
|
|
//
|
|
// textBoxValue
|
|
//
|
|
this.textBoxValue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.textBoxValue.ForeColor = System.Drawing.Color.White;
|
|
this.textBoxValue.Location = new System.Drawing.Point(72, 35);
|
|
this.textBoxValue.Name = "textBoxValue";
|
|
this.textBoxValue.Size = new System.Drawing.Size(161, 20);
|
|
this.textBoxValue.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(35, 13);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Name";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 35);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(34, 13);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "Value";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.button1.Location = new System.Drawing.Point(182, 74);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(51, 23);
|
|
this.button1.TabIndex = 4;
|
|
this.button1.Text = "Ok";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// BfresShaderOptionsEditor
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.ClientSize = new System.Drawing.Size(245, 102);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.textBoxValue);
|
|
this.Controls.Add(this.textBoxName);
|
|
this.ForeColor = System.Drawing.Color.White;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "BfresShaderOptionsEditor";
|
|
this.Text = "Shader Option";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
public System.Windows.Forms.TextBox textBoxName;
|
|
public System.Windows.Forms.TextBox textBoxValue;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button button1;
|
|
}
|
|
} |