2018-12-25 19:40:49 +08:00
|
|
|
|
namespace CodeWalker.Project.Panels
|
|
|
|
|
{
|
|
|
|
|
partial class EditAudioEmitterListPanel
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditAudioEmitterListPanel));
|
2018-12-27 18:37:44 +08:00
|
|
|
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|
|
|
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
|
|
|
this.label12 = new System.Windows.Forms.Label();
|
|
|
|
|
this.NameTextBox = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.label19 = new System.Windows.Forms.Label();
|
|
|
|
|
this.HashesTextBox = new CodeWalker.WinForms.TextBoxFix();
|
2018-12-28 16:40:39 +08:00
|
|
|
|
this.DeleteButton = new System.Windows.Forms.Button();
|
2018-12-27 18:37:44 +08:00
|
|
|
|
this.tabControl1.SuspendLayout();
|
|
|
|
|
this.tabPage1.SuspendLayout();
|
2018-12-25 19:40:49 +08:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
2018-12-27 18:37:44 +08:00
|
|
|
|
// tabControl1
|
|
|
|
|
//
|
|
|
|
|
this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.tabControl1.Controls.Add(this.tabPage1);
|
|
|
|
|
this.tabControl1.Location = new System.Drawing.Point(2, 3);
|
|
|
|
|
this.tabControl1.Name = "tabControl1";
|
|
|
|
|
this.tabControl1.SelectedIndex = 0;
|
|
|
|
|
this.tabControl1.Size = new System.Drawing.Size(559, 446);
|
|
|
|
|
this.tabControl1.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// tabPage1
|
|
|
|
|
//
|
2018-12-28 16:40:39 +08:00
|
|
|
|
this.tabPage1.Controls.Add(this.DeleteButton);
|
2018-12-27 18:37:44 +08:00
|
|
|
|
this.tabPage1.Controls.Add(this.label12);
|
|
|
|
|
this.tabPage1.Controls.Add(this.NameTextBox);
|
|
|
|
|
this.tabPage1.Controls.Add(this.label19);
|
|
|
|
|
this.tabPage1.Controls.Add(this.HashesTextBox);
|
|
|
|
|
this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
|
|
|
|
this.tabPage1.Name = "tabPage1";
|
|
|
|
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
|
|
|
|
this.tabPage1.Size = new System.Drawing.Size(551, 420);
|
|
|
|
|
this.tabPage1.TabIndex = 0;
|
|
|
|
|
this.tabPage1.Text = "Ambient Emitter List";
|
|
|
|
|
this.tabPage1.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
|
|
|
|
// label12
|
|
|
|
|
//
|
|
|
|
|
this.label12.AutoSize = true;
|
|
|
|
|
this.label12.Location = new System.Drawing.Point(26, 9);
|
|
|
|
|
this.label12.Name = "label12";
|
|
|
|
|
this.label12.Size = new System.Drawing.Size(64, 13);
|
|
|
|
|
this.label12.TabIndex = 3;
|
|
|
|
|
this.label12.Text = "Name hash:";
|
|
|
|
|
//
|
|
|
|
|
// NameTextBox
|
|
|
|
|
//
|
|
|
|
|
this.NameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.NameTextBox.Location = new System.Drawing.Point(103, 6);
|
|
|
|
|
this.NameTextBox.Name = "NameTextBox";
|
|
|
|
|
this.NameTextBox.Size = new System.Drawing.Size(428, 20);
|
|
|
|
|
this.NameTextBox.TabIndex = 4;
|
|
|
|
|
this.NameTextBox.TextChanged += new System.EventHandler(this.NameTextBox_TextChanged);
|
|
|
|
|
//
|
|
|
|
|
// label19
|
|
|
|
|
//
|
|
|
|
|
this.label19.AutoSize = true;
|
|
|
|
|
this.label19.Location = new System.Drawing.Point(11, 35);
|
|
|
|
|
this.label19.Name = "label19";
|
|
|
|
|
this.label19.Size = new System.Drawing.Size(79, 13);
|
|
|
|
|
this.label19.TabIndex = 5;
|
|
|
|
|
this.label19.Text = "Emitter hashes:";
|
|
|
|
|
//
|
|
|
|
|
// HashesTextBox
|
|
|
|
|
//
|
|
|
|
|
this.HashesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.HashesTextBox.Location = new System.Drawing.Point(103, 32);
|
|
|
|
|
this.HashesTextBox.Multiline = true;
|
|
|
|
|
this.HashesTextBox.Name = "HashesTextBox";
|
|
|
|
|
this.HashesTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
|
|
|
|
this.HashesTextBox.Size = new System.Drawing.Size(428, 330);
|
|
|
|
|
this.HashesTextBox.TabIndex = 6;
|
|
|
|
|
this.HashesTextBox.WordWrap = false;
|
|
|
|
|
this.HashesTextBox.TextChanged += new System.EventHandler(this.HashesTextBox_TextChanged);
|
|
|
|
|
//
|
2018-12-28 16:40:39 +08:00
|
|
|
|
// DeleteButton
|
|
|
|
|
//
|
|
|
|
|
this.DeleteButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.DeleteButton.Location = new System.Drawing.Point(438, 381);
|
|
|
|
|
this.DeleteButton.Name = "DeleteButton";
|
|
|
|
|
this.DeleteButton.Size = new System.Drawing.Size(93, 23);
|
|
|
|
|
this.DeleteButton.TabIndex = 76;
|
|
|
|
|
this.DeleteButton.Text = "Delete list";
|
|
|
|
|
this.DeleteButton.UseVisualStyleBackColor = true;
|
|
|
|
|
this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
|
|
|
|
|
//
|
2018-12-25 19:40:49 +08:00
|
|
|
|
// EditAudioEmitterListPanel
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(562, 450);
|
2018-12-27 18:37:44 +08:00
|
|
|
|
this.Controls.Add(this.tabControl1);
|
2018-12-25 19:40:49 +08:00
|
|
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
|
|
|
this.Name = "EditAudioEmitterListPanel";
|
|
|
|
|
this.Text = "Edit Audio Emitter List";
|
2018-12-27 18:37:44 +08:00
|
|
|
|
this.tabControl1.ResumeLayout(false);
|
|
|
|
|
this.tabPage1.ResumeLayout(false);
|
|
|
|
|
this.tabPage1.PerformLayout();
|
2018-12-25 19:40:49 +08:00
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2018-12-27 18:37:44 +08:00
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
|
|
|
private System.Windows.Forms.TabPage tabPage1;
|
|
|
|
|
private System.Windows.Forms.Label label19;
|
|
|
|
|
private WinForms.TextBoxFix HashesTextBox;
|
|
|
|
|
private System.Windows.Forms.Label label12;
|
|
|
|
|
private System.Windows.Forms.TextBox NameTextBox;
|
2018-12-28 16:40:39 +08:00
|
|
|
|
private System.Windows.Forms.Button DeleteButton;
|
2018-12-25 19:40:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|