Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1415 → Rev 1416

/akStopWatch/trunk/SettingsForm.Designer.cs
0,0 → 1,123
namespace akStopWatch
{
partial class SettingsForm
{
/// <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.countLabel=new System.Windows.Forms.Label();
this.okButton=new System.Windows.Forms.Button();
this.cancelButton=new System.Windows.Forms.Button();
this.countBox=new System.Windows.Forms.NumericUpDown();
((System.ComponentModel.ISupportInitialize)(this.countBox)).BeginInit();
this.SuspendLayout();
//
// countLabel
//
this.countLabel.AutoSize=true;
this.countLabel.Location=new System.Drawing.Point(12, 9);
this.countLabel.Name="countLabel";
this.countLabel.Size=new System.Drawing.Size(100, 13);
this.countLabel.TabIndex=0;
this.countLabel.Text="Number of counters";
//
// okButton
//
this.okButton.Anchor=((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom|System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult=System.Windows.Forms.DialogResult.OK;
this.okButton.Location=new System.Drawing.Point(124, 36);
this.okButton.Name="okButton";
this.okButton.Size=new System.Drawing.Size(75, 23);
this.okButton.TabIndex=2;
this.okButton.Text="OK";
this.okButton.UseVisualStyleBackColor=true;
//
// cancelButton
//
this.cancelButton.Anchor=((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom|System.Windows.Forms.AnchorStyles.Right)));
this.cancelButton.DialogResult=System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location=new System.Drawing.Point(205, 36);
this.cancelButton.Name="cancelButton";
this.cancelButton.Size=new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex=3;
this.cancelButton.Text="Cancel";
this.cancelButton.UseVisualStyleBackColor=true;
//
// countBox
//
this.countBox.Anchor=((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top|System.Windows.Forms.AnchorStyles.Left)
|System.Windows.Forms.AnchorStyles.Right)));
this.countBox.Location=new System.Drawing.Point(124, 7);
this.countBox.Maximum=new decimal(new int[] {
10,
0,
0,
0});
this.countBox.Minimum=new decimal(new int[] {
1,
0,
0,
0});
this.countBox.Name="countBox";
this.countBox.Size=new System.Drawing.Size(156, 20);
this.countBox.TabIndex=4;
this.countBox.Value=new decimal(new int[] {
1,
0,
0,
0});
//
// SettingsForm
//
this.AcceptButton=this.okButton;
this.AutoScaleDimensions=new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode=System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton=this.cancelButton;
this.ClientSize=new System.Drawing.Size(292, 71);
this.Controls.Add(this.countBox);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.Controls.Add(this.countLabel);
this.FormBorderStyle=System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox=false;
this.MinimizeBox=false;
this.Name="SettingsForm";
this.StartPosition=System.Windows.Forms.FormStartPosition.CenterParent;
this.Text="akStopWatch - Settings";
((System.ComponentModel.ISupportInitialize)(this.countBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
 
}
 
#endregion
 
private System.Windows.Forms.Label countLabel;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Button cancelButton;
public System.Windows.Forms.NumericUpDown countBox;
}
}