TimeTable/TimeTable/view/Decide.Designer.cs
2025-03-22 00:33:45 +01:00

109 lines
3.8 KiB
C#

using System.Drawing;
namespace TimeTable.view {
partial class decide {
/// <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(decide));
stopBtn = new Button();
resumeBtn = new Button();
cancelBtn = new Button();
pictureBox1 = new PictureBox();
label1 = new Label();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
SuspendLayout();
//
// stopBtn
//
stopBtn.Location = new Point(130, 81);
stopBtn.Name = "stopBtn";
stopBtn.Size = new Size(94, 29);
stopBtn.TabIndex = 0;
stopBtn.Text = "Stop";
stopBtn.UseVisualStyleBackColor = true;
//
// resumeBtn
//
resumeBtn.Location = new Point(230, 81);
resumeBtn.Name = "resumeBtn";
resumeBtn.Size = new Size(94, 29);
resumeBtn.TabIndex = 1;
resumeBtn.Text = "Resume";
resumeBtn.UseVisualStyleBackColor = true;
//
// cancelBtn
//
cancelBtn.Location = new Point(330, 81);
cancelBtn.Name = "cancelBtn";
cancelBtn.Size = new Size(94, 29);
cancelBtn.TabIndex = 2;
cancelBtn.Text = "Cancel";
cancelBtn.UseVisualStyleBackColor = true;
//
// pictureBox1
//
pictureBox1.Image = (Image)resources.GetObject("pictureBox1.Image");
pictureBox1.Location = new Point(19, 20);
pictureBox1.Margin = new Padding(10, 0, 0, 0);
pictureBox1.Name = "pictureBox1";
pictureBox1.Size = new Size(61, 57);
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
pictureBox1.TabIndex = 3;
pictureBox1.TabStop = false;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(130, 38);
label1.Name = "label1";
label1.Size = new Size(267, 20);
label1.TabIndex = 4;
label1.Text = "What should happen to the Time Item?";
//
// decide
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(439, 122);
Controls.Add(label1);
Controls.Add(pictureBox1);
Controls.Add(cancelBtn);
Controls.Add(resumeBtn);
Controls.Add(stopBtn);
Name = "decide";
Text = "What to do?";
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button stopBtn;
private Button resumeBtn;
private Button cancelBtn;
private PictureBox pictureBox1;
private Label label1;
}
}