Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1413 → Rev 1414

//akStopWatch/trunk/MainForm.Designer.cs
0,0 → 1,76
namespace akStopWatch
{
partial class MainForm
{
/// <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.timeLabel=new System.Windows.Forms.Label();
this.timer=new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// timeLabel
//
this.timeLabel.Anchor=((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Bottom)
|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.timeLabel.Font=new System.Drawing.Font("Courier New", 72F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.timeLabel.Location=new System.Drawing.Point(0, 0);
this.timeLabel.Name="timeLabel";
this.timeLabel.Size=new System.Drawing.Size(293, 275);
this.timeLabel.TabIndex=0;
this.timeLabel.Paint+=new System.Windows.Forms.PaintEventHandler(this.timeLabel_Paint);
this.timeLabel.Click+=new System.EventHandler(this.MainForm_Click);
//
// timer
//
this.timer.Interval=1000;
this.timer.Tick+=new System.EventHandler(this.timer_Tick);
//
// MainForm
//
this.AutoScaleDimensions=new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode=System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize=new System.Drawing.Size(292, 273);
this.Controls.Add(this.timeLabel);
this.KeyPreview=true;
this.Name="MainForm";
this.Text="akStopWatch";
this.Load+=new System.EventHandler(this.MainForm_Load);
this.KeyPress+=new System.Windows.Forms.KeyPressEventHandler(this.MainForm_KeyPress);
this.Resize+=new System.EventHandler(this.MainForm_Resize);
this.ResumeLayout(false);
 
}
 
#endregion
 
private System.Windows.Forms.Label timeLabel;
private System.Windows.Forms.Timer timer;
}
}