Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-04-10 06:39:36 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-04-10 06:39:36 +0300
commitbafb7face696afa218eb7105cb814f170c6b54b0 (patch)
tree50323bc12ee83d148b17893ec3631d61adb965e6 /SaveStateManager.Designer.cs
parent9089c5ffb0a7b77a5b9687c5457183bbe84f0647 (diff)
Save-State manager! And some fixes.
Diffstat (limited to 'SaveStateManager.Designer.cs')
-rw-r--r--SaveStateManager.Designer.cs226
1 files changed, 226 insertions, 0 deletions
diff --git a/SaveStateManager.Designer.cs b/SaveStateManager.Designer.cs
new file mode 100644
index 00000000..e02e89f7
--- /dev/null
+++ b/SaveStateManager.Designer.cs
@@ -0,0 +1,226 @@
+namespace com.clusterrr.hakchi_gui
+{
+ partial class SaveStateManager
+ {
+ /// <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.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SaveStateManager));
+ this.dataGridView = new System.Windows.Forms.DataGridView();
+ this.colCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.colSize = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.colFlags = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
+ this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.buttonExport = new System.Windows.Forms.Button();
+ this.buttonImport = new System.Windows.Forms.Button();
+ this.buttonDelete = new System.Windows.Forms.Button();
+ this.labelLoading = new System.Windows.Forms.Label();
+ this.statusStrip = new System.Windows.Forms.StatusStrip();
+ this.toolStripStatusLabelSize = new System.Windows.Forms.ToolStripStatusLabel();
+ this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
+ this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
+ this.timerCellHover = new System.Windows.Forms.Timer(this.components);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
+ this.contextMenuStrip.SuspendLayout();
+ this.statusStrip.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // dataGridView
+ //
+ this.dataGridView.AllowUserToAddRows = false;
+ this.dataGridView.AllowUserToDeleteRows = false;
+ this.dataGridView.AllowUserToOrderColumns = true;
+ this.dataGridView.AllowUserToResizeRows = false;
+ resources.ApplyResources(this.dataGridView, "dataGridView");
+ this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.colCode,
+ this.colName,
+ this.colSize,
+ this.colFlags});
+ this.dataGridView.ContextMenuStrip = this.contextMenuStrip;
+ this.dataGridView.Name = "dataGridView";
+ this.dataGridView.ReadOnly = true;
+ this.dataGridView.RowHeadersVisible = false;
+ this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+ this.dataGridView.CellMouseEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellMouseEnter);
+ this.dataGridView.CellMouseLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellMouseLeave);
+ this.dataGridView.CellMouseMove += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_CellMouseMove);
+ this.dataGridView.SelectionChanged += new System.EventHandler(this.dataGridView_SelectionChanged);
+ //
+ // colCode
+ //
+ resources.ApplyResources(this.colCode, "colCode");
+ this.colCode.Name = "colCode";
+ this.colCode.ReadOnly = true;
+ //
+ // colName
+ //
+ resources.ApplyResources(this.colName, "colName");
+ this.colName.Name = "colName";
+ this.colName.ReadOnly = true;
+ //
+ // colSize
+ //
+ this.colSize.FillWeight = 30F;
+ resources.ApplyResources(this.colSize, "colSize");
+ this.colSize.Name = "colSize";
+ this.colSize.ReadOnly = true;
+ //
+ // colFlags
+ //
+ this.colFlags.FillWeight = 30F;
+ resources.ApplyResources(this.colFlags, "colFlags");
+ this.colFlags.Name = "colFlags";
+ this.colFlags.ReadOnly = true;
+ //
+ // contextMenuStrip
+ //
+ this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.exportToolStripMenuItem,
+ this.importToolStripMenuItem,
+ this.deleteToolStripMenuItem});
+ this.contextMenuStrip.Name = "contextMenuStrip";
+ resources.ApplyResources(this.contextMenuStrip, "contextMenuStrip");
+ //
+ // exportToolStripMenuItem
+ //
+ resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
+ this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
+ this.exportToolStripMenuItem.Click += new System.EventHandler(this.buttonExport_Click);
+ //
+ // importToolStripMenuItem
+ //
+ resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
+ this.importToolStripMenuItem.Name = "importToolStripMenuItem";
+ this.importToolStripMenuItem.Click += new System.EventHandler(this.buttonImport_Click);
+ //
+ // deleteToolStripMenuItem
+ //
+ resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
+ this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
+ this.deleteToolStripMenuItem.Click += new System.EventHandler(this.buttonDelete_Click);
+ //
+ // buttonExport
+ //
+ resources.ApplyResources(this.buttonExport, "buttonExport");
+ this.buttonExport.Name = "buttonExport";
+ this.buttonExport.UseVisualStyleBackColor = true;
+ this.buttonExport.Click += new System.EventHandler(this.buttonExport_Click);
+ //
+ // buttonImport
+ //
+ resources.ApplyResources(this.buttonImport, "buttonImport");
+ this.buttonImport.Name = "buttonImport";
+ this.buttonImport.UseVisualStyleBackColor = true;
+ this.buttonImport.Click += new System.EventHandler(this.buttonImport_Click);
+ //
+ // buttonDelete
+ //
+ resources.ApplyResources(this.buttonDelete, "buttonDelete");
+ this.buttonDelete.Name = "buttonDelete";
+ this.buttonDelete.UseVisualStyleBackColor = true;
+ this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
+ //
+ // labelLoading
+ //
+ resources.ApplyResources(this.labelLoading, "labelLoading");
+ this.labelLoading.Name = "labelLoading";
+ //
+ // statusStrip
+ //
+ this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripStatusLabelSize});
+ resources.ApplyResources(this.statusStrip, "statusStrip");
+ this.statusStrip.Name = "statusStrip";
+ //
+ // toolStripStatusLabelSize
+ //
+ this.toolStripStatusLabelSize.Name = "toolStripStatusLabelSize";
+ resources.ApplyResources(this.toolStripStatusLabelSize, "toolStripStatusLabelSize");
+ //
+ // saveFileDialog
+ //
+ this.saveFileDialog.DefaultExt = "clvs";
+ //
+ // openFileDialog
+ //
+ this.openFileDialog.DefaultExt = "clvs";
+ this.openFileDialog.Multiselect = true;
+ //
+ // timerCellHover
+ //
+ this.timerCellHover.Interval = 300;
+ this.timerCellHover.Tick += new System.EventHandler(this.timerCellHover_Tick);
+ //
+ // SaveStateManager
+ //
+ resources.ApplyResources(this, "$this");
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.statusStrip);
+ this.Controls.Add(this.buttonDelete);
+ this.Controls.Add(this.buttonImport);
+ this.Controls.Add(this.buttonExport);
+ this.Controls.Add(this.dataGridView);
+ this.Controls.Add(this.labelLoading);
+ this.Name = "SaveStateManager";
+ this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.SaveStateManager_FormClosed);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
+ this.contextMenuStrip.ResumeLayout(false);
+ this.statusStrip.ResumeLayout(false);
+ this.statusStrip.PerformLayout();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.DataGridView dataGridView;
+ private System.Windows.Forms.Button buttonExport;
+ private System.Windows.Forms.Button buttonImport;
+ private System.Windows.Forms.Button buttonDelete;
+ private System.Windows.Forms.Label labelLoading;
+ private System.Windows.Forms.StatusStrip statusStrip;
+ private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelSize;
+ private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
+ private System.Windows.Forms.ToolStripMenuItem exportToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
+ private System.Windows.Forms.SaveFileDialog saveFileDialog;
+ private System.Windows.Forms.OpenFileDialog openFileDialog;
+ private System.Windows.Forms.DataGridViewTextBoxColumn colCode;
+ private System.Windows.Forms.DataGridViewTextBoxColumn colName;
+ private System.Windows.Forms.DataGridViewTextBoxColumn colSize;
+ private System.Windows.Forms.DataGridViewTextBoxColumn colFlags;
+ private System.Windows.Forms.Timer timerCellHover;
+ }
+} \ No newline at end of file