pk3DS/pk3DS.WinForms/Subforms/Gen7/ItemEditor7.Designer.cs
2024-06-02 18:30:56 -05:00

132 lines
5.3 KiB
C#

namespace pk3DS.WinForms;
partial class ItemEditor7
{
/// <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.CB_Item = new System.Windows.Forms.ComboBox();
this.L_Item = new System.Windows.Forms.Label();
this.RTB = new System.Windows.Forms.RichTextBox();
this.L_Index = new System.Windows.Forms.Label();
this.Grid = new System.Windows.Forms.PropertyGrid();
this.B_Table = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// CB_Item
//
this.CB_Item.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.CB_Item.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.CB_Item.DropDownWidth = 120;
this.CB_Item.FormattingEnabled = true;
this.CB_Item.Location = new System.Drawing.Point(71, 10);
this.CB_Item.Name = "CB_Item";
this.CB_Item.Size = new System.Drawing.Size(144, 21);
this.CB_Item.TabIndex = 1;
this.CB_Item.SelectedIndexChanged += new System.EventHandler(this.ChangeEntry);
//
// L_Item
//
this.L_Item.Location = new System.Drawing.Point(12, 10);
this.L_Item.Name = "L_Item";
this.L_Item.Size = new System.Drawing.Size(51, 21);
this.L_Item.TabIndex = 2;
this.L_Item.Text = "Item:";
this.L_Item.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// RTB
//
this.RTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.RTB.Location = new System.Drawing.Point(11, 37);
this.RTB.Name = "RTB";
this.RTB.ReadOnly = true;
this.RTB.Size = new System.Drawing.Size(316, 51);
this.RTB.TabIndex = 38;
this.RTB.Text = "";
//
// L_Index
//
this.L_Index.AutoSize = true;
this.L_Index.Location = new System.Drawing.Point(221, 14);
this.L_Index.Name = "L_Index";
this.L_Index.Size = new System.Drawing.Size(39, 13);
this.L_Index.TabIndex = 46;
this.L_Index.Text = "Index: ";
//
// Grid
//
this.Grid.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.Grid.LineColor = System.Drawing.SystemColors.ControlDark;
this.Grid.Location = new System.Drawing.Point(12, 94);
this.Grid.Name = "Grid";
this.Grid.Size = new System.Drawing.Size(316, 280);
this.Grid.TabIndex = 47;
//
// B_Table
//
this.B_Table.Location = new System.Drawing.Point(253, 94);
this.B_Table.Name = "B_Table";
this.B_Table.Size = new System.Drawing.Size(75, 23);
this.B_Table.TabIndex = 48;
this.B_Table.Text = "Export Table";
this.B_Table.UseVisualStyleBackColor = true;
this.B_Table.Click += new System.EventHandler(this.B_Table_Click);
//
// ItemEditor7
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(339, 381);
this.Controls.Add(this.B_Table);
this.Controls.Add(this.Grid);
this.Controls.Add(this.L_Index);
this.Controls.Add(this.RTB);
this.Controls.Add(this.L_Item);
this.Controls.Add(this.CB_Item);
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(355, 1000);
this.MinimumSize = new System.Drawing.Size(355, 420);
this.Name = "ItemEditor7";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Item Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_Closing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox CB_Item;
private System.Windows.Forms.Label L_Item;
private System.Windows.Forms.RichTextBox RTB;
private System.Windows.Forms.Label L_Index;
private System.Windows.Forms.PropertyGrid Grid;
private System.Windows.Forms.Button B_Table;
}