QueueSys/QueueSys/frmOptions.Designer.cs

78 lines
3.1 KiB
C#

namespace QueueSys
{
partial class frmOptions
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOptions));
this.cbConfirmDelete = new System.Windows.Forms.CheckBox();
this.btnSaveClose = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// cbConfirmDelete
//
this.cbConfirmDelete.AutoSize = true;
this.cbConfirmDelete.Location = new System.Drawing.Point(13, 31);
this.cbConfirmDelete.Name = "cbConfirmDelete";
this.cbConfirmDelete.Size = new System.Drawing.Size(355, 24);
this.cbConfirmDelete.TabIndex = 0;
this.cbConfirmDelete.Text = "Confirm deleting customer from active bag list";
this.cbConfirmDelete.UseVisualStyleBackColor = true;
this.cbConfirmDelete.CheckedChanged += new System.EventHandler(this.cbConfirmDelete_CheckedChanged);
//
// btnSaveClose
//
this.btnSaveClose.Location = new System.Drawing.Point(12, 72);
this.btnSaveClose.Name = "btnSaveClose";
this.btnSaveClose.Size = new System.Drawing.Size(169, 38);
this.btnSaveClose.TabIndex = 1;
this.btnSaveClose.Text = "Save and close";
this.btnSaveClose.UseVisualStyleBackColor = true;
this.btnSaveClose.Click += new System.EventHandler(this.btnSaveClose_Click);
//
// frmOptions
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(382, 122);
this.Controls.Add(this.btnSaveClose);
this.Controls.Add(this.cbConfirmDelete);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmOptions";
this.Text = "Options";
this.Load += new System.EventHandler(this.frmOptions_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox cbConfirmDelete;
private System.Windows.Forms.Button btnSaveClose;
}
}