using System.Windows.Forms;
namespace SynchronizationContext_Versuche
{
partial class Form1
{
/// <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()
{
this.label1 = new System.Windows.Forms.Label();
this.ThreadPictureBox = new System.Windows.Forms.PictureBox();
this.ThreadStartButton = new System.Windows.Forms.Button();
this.ThreadStopButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.TaskStopButton = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.TaskStartButton = new System.Windows.Forms.Button();
this.TaskPictureBox = new System.Windows.Forms.PictureBox();
this.InformationLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.ThreadPictureBox)).BeginInit();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.TaskPictureBox)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(5, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(255, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Wenn diese LED blinkt, läuft der Hintergrund-Thread";
//
// ThreadPictureBox
//
this.ThreadPictureBox.BackColor = System.Drawing.Color.Gray;
this.ThreadPictureBox.Location = new System.Drawing.Point(267, 27);
this.ThreadPictureBox.Name = "ThreadPictureBox";
this.ThreadPictureBox.Size = new System.Drawing.Size(20, 20);
this.ThreadPictureBox.TabIndex = 1;
this.ThreadPictureBox.TabStop = false;
//
// ThreadStartButton
//
this.ThreadStartButton.Location = new System.Drawing.Point(8, 61);
this.ThreadStartButton.Name = "ThreadStartButton";
this.ThreadStartButton.Size = new System.Drawing.Size(75, 23);
this.ThreadStartButton.TabIndex = 2;
this.ThreadStartButton.Text = "START";
this.ThreadStartButton.UseVisualStyleBackColor = true;
this.ThreadStartButton.Click += new System.EventHandler(this.ThreadStartButton_Click);
//
// ThreadStopButton
//
this.ThreadStopButton.Location = new System.Drawing.Point(90, 61);
this.ThreadStopButton.Name = "ThreadStopButton";
this.ThreadStopButton.Size = new System.Drawing.Size(75, 23);
this.ThreadStopButton.TabIndex = 3;
this.ThreadStopButton.Text = "STOP";
this.ThreadStopButton.UseVisualStyleBackColor = true;
this.ThreadStopButton.Click += new System.EventHandler(this.ThreadStopButton_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.ThreadStopButton);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.ThreadStartButton);
this.groupBox1.Controls.Add(this.ThreadPictureBox);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(290, 101);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Über Thread";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.TaskStopButton);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.TaskStartButton);
this.groupBox2.Controls.Add(this.TaskPictureBox);
this.groupBox2.Location = new System.Drawing.Point(12, 131);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(290, 101);
this.groupBox2.TabIndex = 5;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Über Task";
//
// TaskStopButton
//
this.TaskStopButton.Location = new System.Drawing.Point(90, 61);
this.TaskStopButton.Name = "TaskStopButton";
this.TaskStopButton.Size = new System.Drawing.Size(75, 23);
this.TaskStopButton.TabIndex = 3;
this.TaskStopButton.Text = "STOP";
this.TaskStopButton.UseVisualStyleBackColor = true;
this.TaskStopButton.Click += new System.EventHandler(this.TaskStopButton_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(5, 27);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(245, 13);
this.label2.TabIndex = 0;
this.label2.Text = "Wenn diese LED blinkt, läuft der Hintergrund-Task";
//
// TaskStartButton
//
this.TaskStartButton.Location = new System.Drawing.Point(8, 61);
this.TaskStartButton.Name = "TaskStartButton";
this.TaskStartButton.Size = new System.Drawing.Size(75, 23);
this.TaskStartButton.TabIndex = 2;
this.TaskStartButton.Text = "START";
this.TaskStartButton.UseVisualStyleBackColor = true;
this.TaskStartButton.Click += new System.EventHandler(this.TaskStartButton_Click);
//
// TaskPictureBox
//
this.TaskPictureBox.BackColor = System.Drawing.Color.Gray;
this.TaskPictureBox.Location = new System.Drawing.Point(267, 27);
this.TaskPictureBox.Name = "TaskPictureBox";
this.TaskPictureBox.Size = new System.Drawing.Size(20, 20);
this.TaskPictureBox.TabIndex = 1;
this.TaskPictureBox.TabStop = false;
//
// InformationLabel
//
this.InformationLabel.AutoSize = true;
this.InformationLabel.Location = new System.Drawing.Point(13, 237);
this.InformationLabel.Name = "InformationLabel";
this.InformationLabel.Size = new System.Drawing.Size(10, 13);
this.InformationLabel.TabIndex = 6;
this.InformationLabel.Text = ".";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(314, 272);
this.Controls.Add(this.InformationLabel);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "Form1";
this.Text = "SynchronizationContext-Versuche";
((System.ComponentModel.ISupportInitialize)(this.ThreadPictureBox)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.TaskPictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.PictureBox ThreadPictureBox;
private System.Windows.Forms.Button ThreadStartButton;
private System.Windows.Forms.Button ThreadStopButton;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button TaskStopButton;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button TaskStartButton;
private System.Windows.Forms.PictureBox TaskPictureBox;
private System.Windows.Forms.Label InformationLabel;
}
}