mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-11 06:24:14 -05:00
78 lines
3.1 KiB
C#
78 lines
3.1 KiB
C#
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DSPRE
|
|
{
|
|
partial class DVCalcNatureViewerForm
|
|
{
|
|
/// <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.natureGridView = new System.Windows.Forms.DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(this.natureGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// natureGridView
|
|
//
|
|
this.natureGridView.AllowUserToAddRows = false;
|
|
this.natureGridView.AllowUserToDeleteRows = false;
|
|
this.natureGridView.AllowUserToOrderColumns = true;
|
|
this.natureGridView.AllowUserToResizeRows = false;
|
|
this.natureGridView.BackgroundColor = System.Drawing.SystemColors.Menu;
|
|
this.natureGridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.natureGridView.ColumnHeadersHeight = 29;
|
|
this.natureGridView.Location = new System.Drawing.Point(16, 10);
|
|
this.natureGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.natureGridView.Name = "natureGridView";
|
|
this.natureGridView.ReadOnly = true;
|
|
this.natureGridView.RowHeadersWidth = 51;
|
|
this.natureGridView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.natureGridView.Size = new System.Drawing.Size(387, 333);
|
|
this.natureGridView.TabIndex = 0;
|
|
//
|
|
// DVCalcNatureViewerForm
|
|
//
|
|
this.AllowDrop = true;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(415, 352);
|
|
this.Controls.Add(this.natureGridView);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.MaximizeBox = false;
|
|
this.Name = "DVCalcNatureViewerForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Full List";
|
|
((System.ComponentModel.ISupportInitialize)(this.natureGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView natureGridView;
|
|
}
|
|
} |