133 lines
4.6 KiB
C#
133 lines
4.6 KiB
C#
namespace TextSort
|
|
{
|
|
partial class Window
|
|
{
|
|
/// <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()
|
|
{
|
|
InputLabel = new Label();
|
|
InputTextBox = new TextBox();
|
|
SortAlgorithmLabel = new Label();
|
|
SortAlgorithmComboBox = new ComboBox();
|
|
OutputLabel = new Label();
|
|
SortButton = new Button();
|
|
TimeLabel = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// InputLabel
|
|
//
|
|
InputLabel.AutoSize = true;
|
|
InputLabel.Location = new Point(12, 24);
|
|
InputLabel.Name = "InputLabel";
|
|
InputLabel.Size = new Size(59, 15);
|
|
InputLabel.TabIndex = 0;
|
|
InputLabel.Text = "Input Text";
|
|
//
|
|
// InputTextBox
|
|
//
|
|
InputTextBox.Location = new Point(103, 21);
|
|
InputTextBox.Name = "InputTextBox";
|
|
InputTextBox.Size = new Size(265, 23);
|
|
InputTextBox.TabIndex = 1;
|
|
//
|
|
// SortAlgorithmLabel
|
|
//
|
|
SortAlgorithmLabel.AutoSize = true;
|
|
SortAlgorithmLabel.Location = new Point(12, 56);
|
|
SortAlgorithmLabel.Name = "SortAlgorithmLabel";
|
|
SortAlgorithmLabel.Size = new Size(85, 15);
|
|
SortAlgorithmLabel.TabIndex = 2;
|
|
SortAlgorithmLabel.Text = "Sort Algorithm";
|
|
//
|
|
// SortAlgorithmComboBox
|
|
//
|
|
SortAlgorithmComboBox.FormattingEnabled = true;
|
|
SortAlgorithmComboBox.Location = new Point(103, 53);
|
|
SortAlgorithmComboBox.Name = "SortAlgorithmComboBox";
|
|
SortAlgorithmComboBox.Size = new Size(265, 23);
|
|
SortAlgorithmComboBox.TabIndex = 3;
|
|
//
|
|
// OutputLabel
|
|
//
|
|
OutputLabel.BorderStyle = BorderStyle.Fixed3D;
|
|
OutputLabel.Location = new Point(12, 89);
|
|
OutputLabel.Name = "OutputLabel";
|
|
OutputLabel.Size = new Size(356, 79);
|
|
OutputLabel.TabIndex = 4;
|
|
//
|
|
// SortButton
|
|
//
|
|
SortButton.Anchor = AnchorStyles.None;
|
|
SortButton.Cursor = Cursors.Hand;
|
|
SortButton.Location = new Point(158, 178);
|
|
SortButton.Margin = new Padding(0);
|
|
SortButton.Name = "SortButton";
|
|
SortButton.Size = new Size(75, 23);
|
|
SortButton.TabIndex = 5;
|
|
SortButton.Text = "Sort";
|
|
SortButton.UseVisualStyleBackColor = true;
|
|
SortButton.Click += SortButton_Click;
|
|
//
|
|
// TimeLabel
|
|
//
|
|
TimeLabel.BorderStyle = BorderStyle.Fixed3D;
|
|
TimeLabel.Location = new Point(12, 181);
|
|
TimeLabel.Name = "TimeLabel";
|
|
TimeLabel.Size = new Size(100, 18);
|
|
TimeLabel.TabIndex = 6;
|
|
//
|
|
// Window
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(380, 215);
|
|
Controls.Add(TimeLabel);
|
|
Controls.Add(SortButton);
|
|
Controls.Add(OutputLabel);
|
|
Controls.Add(SortAlgorithmComboBox);
|
|
Controls.Add(SortAlgorithmLabel);
|
|
Controls.Add(InputTextBox);
|
|
Controls.Add(InputLabel);
|
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
MaximizeBox = false;
|
|
Name = "Window";
|
|
Text = "Text Sort";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label InputLabel;
|
|
private TextBox InputTextBox;
|
|
private Label SortAlgorithmLabel;
|
|
private ComboBox SortAlgorithmComboBox;
|
|
private Label OutputLabel;
|
|
private Button SortButton;
|
|
private Label TimeLabel;
|
|
}
|
|
}
|