85 lines
3.4 KiB
C#
85 lines
3.4 KiB
C#
|
|
namespace Tutorial_4
|
|
{
|
|
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.ServiceCheckListBox = new System.Windows.Forms.CheckedListBox();
|
|
this.StorefrontSelectBox = new System.Windows.Forms.ListBox();
|
|
this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
|
|
this.SuspendLayout();
|
|
//
|
|
// ServiceCheckListBox
|
|
//
|
|
this.ServiceCheckListBox.Font = new System.Drawing.Font("Consolas", 7.875F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.ServiceCheckListBox.FormattingEnabled = true;
|
|
this.ServiceCheckListBox.Location = new System.Drawing.Point(161, 167);
|
|
this.ServiceCheckListBox.Name = "ServiceCheckListBox";
|
|
this.ServiceCheckListBox.Size = new System.Drawing.Size(445, 200);
|
|
this.ServiceCheckListBox.TabIndex = 0;
|
|
this.ServiceCheckListBox.SelectedIndexChanged += new System.EventHandler(this.ServiceCheckListBox_SelectedIndexChanged);
|
|
//
|
|
// StorefrontSelectBox
|
|
//
|
|
this.StorefrontSelectBox.FormattingEnabled = true;
|
|
this.StorefrontSelectBox.ItemHeight = 25;
|
|
this.StorefrontSelectBox.Location = new System.Drawing.Point(161, 67);
|
|
this.StorefrontSelectBox.Name = "StorefrontSelectBox";
|
|
this.StorefrontSelectBox.Size = new System.Drawing.Size(445, 79);
|
|
this.StorefrontSelectBox.TabIndex = 1;
|
|
this.StorefrontSelectBox.SelectedIndexChanged += new System.EventHandler(this.StorefrontSelectBox_SelectedIndexChanged);
|
|
//
|
|
// monthCalendar1
|
|
//
|
|
this.monthCalendar1.Location = new System.Drawing.Point(882, 182);
|
|
this.monthCalendar1.Name = "monthCalendar1";
|
|
this.monthCalendar1.TabIndex = 2;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1383, 835);
|
|
this.Controls.Add(this.monthCalendar1);
|
|
this.Controls.Add(this.StorefrontSelectBox);
|
|
this.Controls.Add(this.ServiceCheckListBox);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.CheckedListBox ServiceCheckListBox;
|
|
private System.Windows.Forms.ListBox StorefrontSelectBox;
|
|
private System.Windows.Forms.MonthCalendar monthCalendar1;
|
|
}
|
|
}
|
|
|