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-02-09 08:24:36 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-09 08:24:36 +0300
commit7086b371b2a2e55c3ab0b1861929acfb23ad0bed (patch)
tree33d98ca43ed679d23c495fc170699eb46652ade5 /SelectIconForm.Designer.cs
parent7bd3f9ccccbd52496c063b03564c2d5ee8458454 (diff)
Should work now. Need to test, test, test.
Diffstat (limited to 'SelectIconForm.Designer.cs')
-rw-r--r--SelectIconForm.Designer.cs82
1 files changed, 82 insertions, 0 deletions
diff --git a/SelectIconForm.Designer.cs b/SelectIconForm.Designer.cs
new file mode 100644
index 00000000..af7cf31d
--- /dev/null
+++ b/SelectIconForm.Designer.cs
@@ -0,0 +1,82 @@
+namespace com.clusterrr.hakchi_gui
+{
+ partial class SelectIconForm
+ {
+ /// <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(SelectIconForm));
+ this.listBox = new System.Windows.Forms.ListBox();
+ this.buttonOk = new System.Windows.Forms.Button();
+ this.pictureBoxArt = new System.Windows.Forms.PictureBox();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArt)).BeginInit();
+ this.SuspendLayout();
+ //
+ // listBox
+ //
+ resources.ApplyResources(this.listBox, "listBox");
+ this.listBox.FormattingEnabled = true;
+ this.listBox.Name = "listBox";
+ this.listBox.SelectedIndexChanged += new System.EventHandler(this.listBox_SelectedIndexChanged);
+ this.listBox.DoubleClick += new System.EventHandler(this.listBox_DoubleClick);
+ //
+ // buttonOk
+ //
+ resources.ApplyResources(this.buttonOk, "buttonOk");
+ this.buttonOk.Name = "buttonOk";
+ this.buttonOk.UseVisualStyleBackColor = true;
+ this.buttonOk.Click += new System.EventHandler(this.listBox_DoubleClick);
+ //
+ // pictureBoxArt
+ //
+ resources.ApplyResources(this.pictureBoxArt, "pictureBoxArt");
+ this.pictureBoxArt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.pictureBoxArt.Name = "pictureBoxArt";
+ this.pictureBoxArt.TabStop = false;
+ //
+ // SelectIconForm
+ //
+ this.AcceptButton = this.buttonOk;
+ resources.ApplyResources(this, "$this");
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.pictureBoxArt);
+ this.Controls.Add(this.buttonOk);
+ this.Controls.Add(this.listBox);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
+ this.MinimizeBox = false;
+ this.Name = "SelectIconForm";
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArt)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button buttonOk;
+ internal System.Windows.Forms.ListBox listBox;
+ private System.Windows.Forms.PictureBox pictureBoxArt;
+ }
+} \ No newline at end of file