pkNX/pkNX.WinForms/Controls/PlacementSpawnerEditor8a.Designer.cs
JelleInfinity 7686aa1d49
Add area editor buttons + fix auto resizing/component alignment (#239)
* Add buttons to edit encounter slots

* Add tooltips

* Add default icon for editor windows

* Fix auto size on window resize + re-align

Some components didn't resize. This commit fixes that + fixes alignment issues in all editors.
2022-09-18 12:45:20 -07:00

113 lines
5.5 KiB
C#

namespace pkNX.WinForms.Controls
{
partial class PlacementSpawnerEditor8a
{
/// <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 Component 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.components = new System.ComponentModel.Container();
this.B_MaxSpawnCountRange = new System.Windows.Forms.Button();
this.PG_Spawner = new System.Windows.Forms.PropertyGrid();
this.CB_Encounters = new System.Windows.Forms.ComboBox();
this.L_ConfigName = new System.Windows.Forms.Label();
this.TT_ButtonToolTip = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// B_MaxSpawnCountRange
//
this.B_MaxSpawnCountRange.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.B_MaxSpawnCountRange.Location = new System.Drawing.Point(730, 7);
this.B_MaxSpawnCountRange.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.B_MaxSpawnCountRange.Name = "B_MaxSpawnCountRange";
this.B_MaxSpawnCountRange.Size = new System.Drawing.Size(222, 35);
this.B_MaxSpawnCountRange.TabIndex = 8;
this.B_MaxSpawnCountRange.Text = "Max All Spawn Counts";
this.TT_ButtonToolTip.SetToolTip(this.B_MaxSpawnCountRange, "Set all min and max spawn counts to 8 for all spawners in this area");
this.B_MaxSpawnCountRange.UseVisualStyleBackColor = true;
this.B_MaxSpawnCountRange.Click += new System.EventHandler(this.B_MaxSpawnCountRange_Click);
//
// PG_Spawner
//
this.PG_Spawner.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.PG_Spawner.Location = new System.Drawing.Point(8, 91);
this.PG_Spawner.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.PG_Spawner.Name = "PG_Spawner";
this.PG_Spawner.Size = new System.Drawing.Size(944, 620);
this.PG_Spawner.TabIndex = 7;
//
// CB_Encounters
//
this.CB_Encounters.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.CB_Encounters.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.CB_Encounters.FormattingEnabled = true;
this.CB_Encounters.Location = new System.Drawing.Point(8, 52);
this.CB_Encounters.Margin = new System.Windows.Forms.Padding(4, 3, 4, 6);
this.CB_Encounters.Name = "CB_Encounters";
this.CB_Encounters.Size = new System.Drawing.Size(259, 28);
this.CB_Encounters.TabIndex = 6;
this.CB_Encounters.SelectedIndexChanged += new System.EventHandler(this.CB_Encounters_SelectedIndexChanged);
//
// L_ConfigName
//
this.L_ConfigName.AutoSize = true;
this.L_ConfigName.Location = new System.Drawing.Point(8, 7);
this.L_ConfigName.Margin = new System.Windows.Forms.Padding(4, 3, 4, 11);
this.L_ConfigName.Name = "L_ConfigName";
this.L_ConfigName.Padding = new System.Windows.Forms.Padding(4, 7, 4, 0);
this.L_ConfigName.Size = new System.Drawing.Size(171, 27);
this.L_ConfigName.TabIndex = 9;
this.L_ConfigName.Text = "{Configured File Path}";
this.L_ConfigName.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
//
// PlacementSpawnerEditor8a
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
this.Controls.Add(this.L_ConfigName);
this.Controls.Add(this.B_MaxSpawnCountRange);
this.Controls.Add(this.PG_Spawner);
this.Controls.Add(this.CB_Encounters);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MinimumSize = new System.Drawing.Size(773, 454);
this.Name = "PlacementSpawnerEditor8a";
this.Padding = new System.Windows.Forms.Padding(4);
this.Size = new System.Drawing.Size(960, 720);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button B_MaxSpawnCountRange;
private System.Windows.Forms.PropertyGrid PG_Spawner;
private System.Windows.Forms.ComboBox CB_Encounters;
private System.Windows.Forms.Label L_ConfigName;
private System.Windows.Forms.ToolTip TT_ButtonToolTip;
}
}