mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-01 07:04:33 -05:00
97 lines
4.1 KiB
C#
97 lines
4.1 KiB
C#
namespace pkNX.WinForms
|
|
{
|
|
partial class TMList
|
|
{
|
|
/// <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.B_Save = new System.Windows.Forms.Button();
|
|
this.B_RTM = new System.Windows.Forms.Button();
|
|
this.dgvTM = new System.Windows.Forms.DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvTM)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// B_Save
|
|
//
|
|
this.B_Save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.B_Save.Location = new System.Drawing.Point(185, 12);
|
|
this.B_Save.Name = "B_Save";
|
|
this.B_Save.Size = new System.Drawing.Size(60, 23);
|
|
this.B_Save.TabIndex = 1;
|
|
this.B_Save.Text = "Save";
|
|
this.B_Save.UseVisualStyleBackColor = true;
|
|
this.B_Save.Click += new System.EventHandler(this.B_Save_Click);
|
|
//
|
|
// B_RTM
|
|
//
|
|
this.B_RTM.Location = new System.Drawing.Point(12, 12);
|
|
this.B_RTM.Name = "B_RTM";
|
|
this.B_RTM.Size = new System.Drawing.Size(75, 23);
|
|
this.B_RTM.TabIndex = 7;
|
|
this.B_RTM.Text = "Randomize";
|
|
this.B_RTM.UseVisualStyleBackColor = true;
|
|
this.B_RTM.Click += new System.EventHandler(this.B_RTM_Click);
|
|
//
|
|
// dgvTM
|
|
//
|
|
this.dgvTM.AllowUserToAddRows = false;
|
|
this.dgvTM.AllowUserToDeleteRows = false;
|
|
this.dgvTM.AllowUserToResizeColumns = false;
|
|
this.dgvTM.AllowUserToResizeRows = false;
|
|
this.dgvTM.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.dgvTM.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvTM.Location = new System.Drawing.Point(12, 41);
|
|
this.dgvTM.Name = "dgvTM";
|
|
this.dgvTM.RowHeadersVisible = false;
|
|
this.dgvTM.Size = new System.Drawing.Size(233, 333);
|
|
this.dgvTM.TabIndex = 6;
|
|
//
|
|
// TMList
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(257, 386);
|
|
this.Controls.Add(this.B_RTM);
|
|
this.Controls.Add(this.dgvTM);
|
|
this.Controls.Add(this.B_Save);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.MaximizeBox = false;
|
|
this.Name = "TMList";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "TM List";
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvTM)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Button B_Save;
|
|
private System.Windows.Forms.Button B_RTM;
|
|
private System.Windows.Forms.DataGridView dgvTM;
|
|
}
|
|
} |