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-01-23 02:24:43 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-23 02:24:43 +0300
commitfb6b8383c27560c30e7a3076c67b925a7f8ff363 (patch)
treed30a5008e0fb39bdbac6e275689c2b776c4dee66 /SelectFileForm.Designer.cs
parenta6328fb50012c128e41d23d2de81241aeab14de2 (diff)
Archives support
Diffstat (limited to 'SelectFileForm.Designer.cs')
-rw-r--r--SelectFileForm.Designer.cs69
1 files changed, 69 insertions, 0 deletions
diff --git a/SelectFileForm.Designer.cs b/SelectFileForm.Designer.cs
new file mode 100644
index 00000000..15da0460
--- /dev/null
+++ b/SelectFileForm.Designer.cs
@@ -0,0 +1,69 @@
+namespace com.clusterrr.hakchi_gui
+{
+ partial class SelectFileForm
+ {
+ /// <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()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectFileForm));
+ this.listBoxFiles = new System.Windows.Forms.ListBox();
+ this.buttonOk = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // listBoxFiles
+ //
+ resources.ApplyResources(this.listBoxFiles, "listBoxFiles");
+ this.listBoxFiles.FormattingEnabled = true;
+ this.listBoxFiles.Name = "listBoxFiles";
+ this.listBoxFiles.SelectedIndexChanged += new System.EventHandler(this.listBoxFiles_SelectedIndexChanged);
+ this.listBoxFiles.DoubleClick += new System.EventHandler(this.listBoxFiles_DoubleClick);
+ //
+ // buttonOk
+ //
+ resources.ApplyResources(this.buttonOk, "buttonOk");
+ this.buttonOk.Name = "buttonOk";
+ this.buttonOk.UseVisualStyleBackColor = true;
+ this.buttonOk.Click += new System.EventHandler(this.listBoxFiles_DoubleClick);
+ //
+ // SelectFileForm
+ //
+ this.AcceptButton = this.buttonOk;
+ resources.ApplyResources(this, "$this");
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.buttonOk);
+ this.Controls.Add(this.listBoxFiles);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
+ this.Name = "SelectFileForm";
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button buttonOk;
+ internal System.Windows.Forms.ListBox listBoxFiles;
+ }
+} \ No newline at end of file