2015-06-30 00:07:12 +07:00
|
|
|
namespace FalloutClient {
|
|
|
|
|
partial class EditorWindow {
|
|
|
|
|
/// <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.bSave = new System.Windows.Forms.Button();
|
|
|
|
|
this.bCancel = new System.Windows.Forms.Button();
|
|
|
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
|
|
|
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
|
|
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
|
|
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
2019-06-15 09:57:14 +08:00
|
|
|
this.checkBox = new System.Windows.Forms.CheckBox();
|
2015-06-30 00:07:12 +07:00
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// bSave
|
|
|
|
|
//
|
2019-04-05 09:17:43 +08:00
|
|
|
this.bSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
|
|
|
this.bSave.Location = new System.Drawing.Point(12, 336);
|
2015-06-30 00:07:12 +07:00
|
|
|
this.bSave.Name = "bSave";
|
|
|
|
|
this.bSave.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.bSave.TabIndex = 0;
|
|
|
|
|
this.bSave.Text = "Save";
|
|
|
|
|
this.bSave.UseVisualStyleBackColor = true;
|
|
|
|
|
this.bSave.Click += new System.EventHandler(this.bSave_Click);
|
|
|
|
|
//
|
|
|
|
|
// bCancel
|
|
|
|
|
//
|
|
|
|
|
this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
2019-04-05 09:17:43 +08:00
|
|
|
this.bCancel.Location = new System.Drawing.Point(371, 336);
|
2015-06-30 00:07:12 +07:00
|
|
|
this.bCancel.Name = "bCancel";
|
|
|
|
|
this.bCancel.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.bCancel.TabIndex = 1;
|
|
|
|
|
this.bCancel.Text = "Cancel";
|
|
|
|
|
this.bCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
|
|
|
|
|
//
|
|
|
|
|
// dataGridView1
|
|
|
|
|
//
|
|
|
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
|
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
2019-04-04 10:22:02 +08:00
|
|
|
this.dataGridView1.AllowUserToResizeRows = false;
|
|
|
|
|
this.dataGridView1.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)));
|
2019-04-05 09:17:43 +08:00
|
|
|
this.dataGridView1.ColumnHeadersHeight = 22;
|
2015-06-30 00:07:12 +07:00
|
|
|
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
|
|
|
this.Column1,
|
|
|
|
|
this.Column2,
|
|
|
|
|
this.Column3});
|
|
|
|
|
this.dataGridView1.Location = new System.Drawing.Point(12, 12);
|
2019-04-05 09:17:43 +08:00
|
|
|
this.dataGridView1.MultiSelect = false;
|
2015-06-30 00:07:12 +07:00
|
|
|
this.dataGridView1.Name = "dataGridView1";
|
2019-04-04 10:22:02 +08:00
|
|
|
this.dataGridView1.RowHeadersVisible = false;
|
2019-04-05 09:17:43 +08:00
|
|
|
this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
|
|
|
|
|
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
|
|
|
|
|
this.dataGridView1.Size = new System.Drawing.Size(434, 318);
|
2015-06-30 00:07:12 +07:00
|
|
|
this.dataGridView1.TabIndex = 2;
|
|
|
|
|
this.dataGridView1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEndEdit);
|
|
|
|
|
//
|
|
|
|
|
// Column1
|
|
|
|
|
//
|
2019-04-04 10:22:02 +08:00
|
|
|
this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
|
|
|
this.Column1.HeaderText = "Element";
|
2015-06-30 00:07:12 +07:00
|
|
|
this.Column1.Name = "Column1";
|
|
|
|
|
this.Column1.ReadOnly = true;
|
2019-04-05 09:17:43 +08:00
|
|
|
this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
2015-06-30 00:07:12 +07:00
|
|
|
//
|
|
|
|
|
// Column2
|
|
|
|
|
//
|
|
|
|
|
this.Column2.HeaderText = "Type";
|
|
|
|
|
this.Column2.Name = "Column2";
|
|
|
|
|
this.Column2.ReadOnly = true;
|
2019-04-05 09:17:43 +08:00
|
|
|
this.Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
|
|
|
|
this.Column2.Width = 75;
|
2015-06-30 00:07:12 +07:00
|
|
|
//
|
|
|
|
|
// Column3
|
|
|
|
|
//
|
|
|
|
|
this.Column3.HeaderText = "Value";
|
|
|
|
|
this.Column3.Name = "Column3";
|
2019-04-05 09:17:43 +08:00
|
|
|
this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
|
|
|
|
this.Column3.Width = 150;
|
2015-06-30 00:07:12 +07:00
|
|
|
//
|
2019-06-15 09:57:14 +08:00
|
|
|
// checkBox
|
|
|
|
|
//
|
|
|
|
|
this.checkBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
|
|
|
this.checkBox.AutoSize = true;
|
|
|
|
|
this.checkBox.Location = new System.Drawing.Point(103, 341);
|
|
|
|
|
this.checkBox.Name = "checkBox";
|
|
|
|
|
this.checkBox.Size = new System.Drawing.Size(91, 17);
|
|
|
|
|
this.checkBox.TabIndex = 3;
|
|
|
|
|
this.checkBox.Text = "Values in Hex";
|
|
|
|
|
this.checkBox.UseVisualStyleBackColor = true;
|
|
|
|
|
this.checkBox.Click += new System.EventHandler(this.checkBox_Click);
|
|
|
|
|
//
|
2015-06-30 00:07:12 +07:00
|
|
|
// EditorWindow
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2019-04-05 09:17:43 +08:00
|
|
|
this.ClientSize = new System.Drawing.Size(458, 371);
|
2019-06-15 09:57:14 +08:00
|
|
|
this.Controls.Add(this.checkBox);
|
2015-06-30 00:07:12 +07:00
|
|
|
this.Controls.Add(this.dataGridView1);
|
|
|
|
|
this.Controls.Add(this.bCancel);
|
|
|
|
|
this.Controls.Add(this.bSave);
|
2019-04-05 09:17:43 +08:00
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
2019-04-05 12:03:25 +08:00
|
|
|
this.MinimumSize = new System.Drawing.Size(300, 200);
|
2015-06-30 00:07:12 +07:00
|
|
|
this.Name = "EditorWindow";
|
2019-04-07 10:59:02 +08:00
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
2019-04-06 08:24:49 +08:00
|
|
|
this.Text = "Edit Values";
|
2015-06-30 00:07:12 +07:00
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
|
|
|
this.ResumeLayout(false);
|
2019-06-15 09:57:14 +08:00
|
|
|
this.PerformLayout();
|
2015-06-30 00:07:12 +07:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.Button bSave;
|
|
|
|
|
private System.Windows.Forms.Button bCancel;
|
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
|
|
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
|
|
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
|
2019-06-15 09:57:14 +08:00
|
|
|
private System.Windows.Forms.CheckBox checkBox;
|
2015-06-30 00:07:12 +07:00
|
|
|
}
|
|
|
|
|
}
|