Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-06 20:57:28 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-06 20:57:28 +0300
commit3a7111a4c8cb629e0c96dfb50842fb4ef3979eed (patch)
tree86162e035b96d8a7d5fa719afcdf703f63fa65db /SnesPresetEditor.Designer.cs
parent90bbb7552e5aaa9c99d23c4aa89ccac91f5669bb (diff)
New settings for SNES
Diffstat (limited to 'SnesPresetEditor.Designer.cs')
-rw-r--r--SnesPresetEditor.Designer.cs111
1 files changed, 111 insertions, 0 deletions
diff --git a/SnesPresetEditor.Designer.cs b/SnesPresetEditor.Designer.cs
new file mode 100644
index 00000000..bccae5f2
--- /dev/null
+++ b/SnesPresetEditor.Designer.cs
@@ -0,0 +1,111 @@
+namespace com.clusterrr.hakchi_gui
+{
+ partial class SnesPresetEditor
+ {
+ /// <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.labelPresetID = new System.Windows.Forms.Label();
+ this.textBoxPresetID = new System.Windows.Forms.TextBox();
+ this.labelExtra = new System.Windows.Forms.Label();
+ this.textBoxExtra = new System.Windows.Forms.TextBox();
+ this.buttonOk = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // labelPresetID
+ //
+ this.labelPresetID.AutoSize = true;
+ this.labelPresetID.Location = new System.Drawing.Point(12, 22);
+ this.labelPresetID.Name = "labelPresetID";
+ this.labelPresetID.Size = new System.Drawing.Size(74, 13);
+ this.labelPresetID.TabIndex = 0;
+ this.labelPresetID.Text = "Preset ID: 0x";
+ //
+ // textBoxPresetID
+ //
+ this.textBoxPresetID.Location = new System.Drawing.Point(84, 19);
+ this.textBoxPresetID.MaxLength = 4;
+ this.textBoxPresetID.Name = "textBoxPresetID";
+ this.textBoxPresetID.Size = new System.Drawing.Size(55, 20);
+ this.textBoxPresetID.TabIndex = 1;
+ //
+ // labelExtra
+ //
+ this.labelExtra.AutoSize = true;
+ this.labelExtra.Location = new System.Drawing.Point(191, 22);
+ this.labelExtra.Name = "labelExtra";
+ this.labelExtra.Size = new System.Drawing.Size(77, 13);
+ this.labelExtra.TabIndex = 2;
+ this.labelExtra.Text = "Extra byte: 0x";
+ //
+ // textBoxExtra
+ //
+ this.textBoxExtra.Location = new System.Drawing.Point(266, 19);
+ this.textBoxExtra.MaxLength = 2;
+ this.textBoxExtra.Name = "textBoxExtra";
+ this.textBoxExtra.Size = new System.Drawing.Size(31, 20);
+ this.textBoxExtra.TabIndex = 3;
+ //
+ // buttonOk
+ //
+ this.buttonOk.Location = new System.Drawing.Point(336, 19);
+ this.buttonOk.Name = "buttonOk";
+ this.buttonOk.Size = new System.Drawing.Size(53, 20);
+ this.buttonOk.TabIndex = 4;
+ this.buttonOk.Text = "OK";
+ this.buttonOk.UseVisualStyleBackColor = true;
+ this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
+ //
+ // SnesPresetEditor
+ //
+ this.AcceptButton = this.buttonOk;
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(409, 54);
+ this.Controls.Add(this.buttonOk);
+ this.Controls.Add(this.textBoxExtra);
+ this.Controls.Add(this.labelExtra);
+ this.Controls.Add(this.textBoxPresetID);
+ this.Controls.Add(this.labelPresetID);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
+ this.Name = "SnesPresetEditor";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
+ this.Text = "SNES Preset ID";
+ this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SnesPresetEditor_FormClosing);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label labelPresetID;
+ private System.Windows.Forms.TextBox textBoxPresetID;
+ private System.Windows.Forms.Label labelExtra;
+ private System.Windows.Forms.TextBox textBoxExtra;
+ private System.Windows.Forms.Button buttonOk;
+ }
+} \ No newline at end of file