EduNetworkBuilder/EduNetworkBuilder/RandomPuzzleChooser.Designe...

158 lines
6.8 KiB
C#

namespace EduNetworkBuilder
{
partial class RandomPuzzleChooser
{
/// <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(RandomPuzzleChooser));
this.cbDifficulty = new System.Windows.Forms.ComboBox();
this.lblDifficulty = new System.Windows.Forms.Label();
this.cbChosenNet = new System.Windows.Forms.ComboBox();
this.lblNetwork = new System.Windows.Forms.Label();
this.btnUseFile = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.lblFilename = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// cbDifficulty
//
this.cbDifficulty.FormattingEnabled = true;
this.cbDifficulty.Location = new System.Drawing.Point(158, 16);
this.cbDifficulty.Name = "cbDifficulty";
this.cbDifficulty.Size = new System.Drawing.Size(121, 24);
this.cbDifficulty.TabIndex = 0;
//
// lblDifficulty
//
this.lblDifficulty.AutoSize = true;
this.lblDifficulty.Location = new System.Drawing.Point(44, 19);
this.lblDifficulty.Name = "lblDifficulty";
this.lblDifficulty.Size = new System.Drawing.Size(61, 17);
this.lblDifficulty.TabIndex = 1;
this.lblDifficulty.Text = "Difficulty";
//
// cbChosenNet
//
this.cbChosenNet.FormattingEnabled = true;
this.cbChosenNet.Location = new System.Drawing.Point(158, 57);
this.cbChosenNet.Name = "cbChosenNet";
this.cbChosenNet.Size = new System.Drawing.Size(121, 24);
this.cbChosenNet.TabIndex = 2;
this.cbChosenNet.Enter += new System.EventHandler(this.cbChosenNet_Enter);
this.cbChosenNet.Leave += new System.EventHandler(this.cbChosenNet_Leave);
//
// lblNetwork
//
this.lblNetwork.AutoSize = true;
this.lblNetwork.Location = new System.Drawing.Point(44, 60);
this.lblNetwork.Name = "lblNetwork";
this.lblNetwork.Size = new System.Drawing.Size(59, 17);
this.lblNetwork.TabIndex = 3;
this.lblNetwork.Text = "Network";
//
// btnUseFile
//
this.btnUseFile.Location = new System.Drawing.Point(285, 58);
this.btnUseFile.Name = "btnUseFile";
this.btnUseFile.Size = new System.Drawing.Size(31, 23);
this.btnUseFile.TabIndex = 4;
this.btnUseFile.Text = "...";
this.btnUseFile.UseVisualStyleBackColor = true;
this.btnUseFile.Click += new System.EventHandler(this.btnUseFile_Click);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(241, 110);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 5;
this.btnOK.Text = "ok";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(160, 110);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 6;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// lblFilename
//
this.lblFilename.AutoSize = true;
this.lblFilename.Location = new System.Drawing.Point(44, 87);
this.lblFilename.Name = "lblFilename";
this.lblFilename.Size = new System.Drawing.Size(95, 17);
this.lblFilename.TabIndex = 7;
this.lblFilename.Text = "FileGoesHere";
//
// RandomPuzzleChooser
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(341, 164);
this.ControlBox = false;
this.Controls.Add(this.lblFilename);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnUseFile);
this.Controls.Add(this.lblNetwork);
this.Controls.Add(this.cbChosenNet);
this.Controls.Add(this.lblDifficulty);
this.Controls.Add(this.cbDifficulty);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "RandomPuzzleChooser";
this.Text = "RandomPuzzleChooser";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cbDifficulty;
private System.Windows.Forms.Label lblDifficulty;
private System.Windows.Forms.ComboBox cbChosenNet;
private System.Windows.Forms.Label lblNetwork;
private System.Windows.Forms.Button btnUseFile;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label lblFilename;
}
}