107 lines
4.5 KiB
C#
107 lines
4.5 KiB
C#
|
namespace OpenCLTest
|
|||
|
{
|
|||
|
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.components = new System.ComponentModel.Container();
|
|||
|
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
|||
|
this.commandToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.timer = new System.Windows.Forms.Timer(this.components);
|
|||
|
this.menuStrip.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// menuStrip
|
|||
|
//
|
|||
|
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.commandToolStripMenuItem});
|
|||
|
this.menuStrip.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.menuStrip.Name = "menuStrip";
|
|||
|
this.menuStrip.Size = new System.Drawing.Size(656, 24);
|
|||
|
this.menuStrip.TabIndex = 0;
|
|||
|
this.menuStrip.Text = "menuStrip1";
|
|||
|
//
|
|||
|
// commandToolStripMenuItem
|
|||
|
//
|
|||
|
this.commandToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.startToolStripMenuItem,
|
|||
|
this.stopToolStripMenuItem});
|
|||
|
this.commandToolStripMenuItem.Name = "commandToolStripMenuItem";
|
|||
|
this.commandToolStripMenuItem.Size = new System.Drawing.Size(76, 20);
|
|||
|
this.commandToolStripMenuItem.Text = "&Command";
|
|||
|
//
|
|||
|
// startToolStripMenuItem
|
|||
|
//
|
|||
|
this.startToolStripMenuItem.Name = "startToolStripMenuItem";
|
|||
|
this.startToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
|
|||
|
this.startToolStripMenuItem.Text = "&Start";
|
|||
|
this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// stopToolStripMenuItem
|
|||
|
//
|
|||
|
this.stopToolStripMenuItem.Enabled = false;
|
|||
|
this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
|
|||
|
this.stopToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
|
|||
|
this.stopToolStripMenuItem.Text = "&Stop";
|
|||
|
this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// timer
|
|||
|
//
|
|||
|
this.timer.Interval = 3;
|
|||
|
this.timer.Tick += new System.EventHandler(this.timer_Tick);
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(656, 331);
|
|||
|
this.Controls.Add(this.menuStrip);
|
|||
|
this.MainMenuStrip = this.menuStrip;
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Form1";
|
|||
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|||
|
this.menuStrip.ResumeLayout(false);
|
|||
|
this.menuStrip.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.MenuStrip menuStrip;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem commandToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem startToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem stopToolStripMenuItem;
|
|||
|
private System.Windows.Forms.Timer timer;
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|