From fb6b8383c27560c30e7a3076c67b925a7f8ff363 Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Mon, 23 Jan 2017 02:24:43 +0300 Subject: Archives support --- SelectFileForm.Designer.cs | 69 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 SelectFileForm.Designer.cs (limited to 'SelectFileForm.Designer.cs') 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 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + 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 -- cgit v1.2.3