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-15 19:44:34 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-15 19:44:34 +0300
commitb259fe4222817ccc0ae2f552f879e22d2c3c8681 (patch)
tree9a1618205842818e0f8fcb00e4f8903bc2a22bbc /SelectModsForm.Designer.cs
parent0128c2cdce3bc8d0afa32058edfbfb75ba5f21d7 (diff)
Huge rework. Finally module system from madmonkey. Hooray!
Diffstat (limited to 'SelectModsForm.Designer.cs')
-rw-r--r--SelectModsForm.Designer.cs78
1 files changed, 78 insertions, 0 deletions
diff --git a/SelectModsForm.Designer.cs b/SelectModsForm.Designer.cs
new file mode 100644
index 00000000..a6fb2c1e
--- /dev/null
+++ b/SelectModsForm.Designer.cs
@@ -0,0 +1,78 @@
+namespace com.clusterrr.hakchi_gui
+{
+ partial class SelectModsForm
+ {
+
+ #region Windows Form Designer generated code
+
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectModsForm));
+ this.checkedListBoxMods = new System.Windows.Forms.CheckedListBox();
+ this.textBoxReadme = new System.Windows.Forms.TextBox();
+ this.buttonOk = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // checkedListBoxMods
+ //
+ this.checkedListBoxMods.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)));
+ this.checkedListBoxMods.FormattingEnabled = true;
+ this.checkedListBoxMods.Location = new System.Drawing.Point(12, 12);
+ this.checkedListBoxMods.Name = "checkedListBoxMods";
+ this.checkedListBoxMods.Size = new System.Drawing.Size(258, 334);
+ this.checkedListBoxMods.TabIndex = 0;
+ this.checkedListBoxMods.SelectedIndexChanged += new System.EventHandler(this.checkedListBoxMods_SelectedIndexChanged);
+ //
+ // textBoxReadme
+ //
+ this.textBoxReadme.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)));
+ this.textBoxReadme.Enabled = false;
+ this.textBoxReadme.Location = new System.Drawing.Point(276, 12);
+ this.textBoxReadme.Multiline = true;
+ this.textBoxReadme.Name = "textBoxReadme";
+ this.textBoxReadme.Size = new System.Drawing.Size(271, 334);
+ this.textBoxReadme.TabIndex = 1;
+ //
+ // buttonOk
+ //
+ this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonOk.Location = new System.Drawing.Point(12, 358);
+ this.buttonOk.Name = "buttonOk";
+ this.buttonOk.Size = new System.Drawing.Size(535, 33);
+ this.buttonOk.TabIndex = 2;
+ this.buttonOk.Text = "OK";
+ this.buttonOk.UseVisualStyleBackColor = true;
+ this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
+ //
+ // SelectModsForm
+ //
+ this.AcceptButton = this.buttonOk;
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(559, 401);
+ this.Controls.Add(this.buttonOk);
+ this.Controls.Add(this.textBoxReadme);
+ this.Controls.Add(this.checkedListBoxMods);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MinimumSize = new System.Drawing.Size(400, 300);
+ this.Name = "SelectModsForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
+ this.Text = "ModsSelect";
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+
+ #endregion
+
+ private System.Windows.Forms.TextBox textBoxReadme;
+ private System.Windows.Forms.Button buttonOk;
+ internal System.Windows.Forms.CheckedListBox checkedListBoxMods;
+ }
+} \ No newline at end of file