using System.Drawing; using TimeTable.controll; using TimeTable.model; namespace TimeTable.view { partial class decide { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; public decide(string uid) { InitializeComponent(); } /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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; // // uidText // label1.AutoSize = true; label1.Location = new Point(130, 38); label1.Name = "uidText"; 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); FormBorderStyle = FormBorderStyle.FixedSingle; Name = "decide"; Text = "What to do?"; ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit(); ResumeLayout(false); PerformLayout(); } private void btnCancelClick(object sender, EventArgs e) { this.Close(); } #endregion private Button stopBtn; private Button resumeBtn; private Button cancelBtn; private PictureBox pictureBox1; private Label label1; } }