116 lines
4.7 KiB
C#
116 lines
4.7 KiB
C#
|
namespace Tanshu.Accounts.Management
|
|||
|
{
|
|||
|
partial class AmountForm
|
|||
|
{
|
|||
|
/// <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.dtpFinish = new System.Windows.Forms.DateTimePicker();
|
|||
|
this.dtpStart = new System.Windows.Forms.DateTimePicker();
|
|||
|
this.label10 = new System.Windows.Forms.Label();
|
|||
|
this.txtQuantity = new System.Windows.Forms.TextBox();
|
|||
|
this.btnGo = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// dtpFinish
|
|||
|
//
|
|||
|
this.dtpFinish.CustomFormat = "dd-MMM-yyyy";
|
|||
|
this.dtpFinish.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|||
|
this.dtpFinish.Location = new System.Drawing.Point(224, 15);
|
|||
|
this.dtpFinish.Margin = new System.Windows.Forms.Padding(4);
|
|||
|
this.dtpFinish.Name = "dtpFinish";
|
|||
|
this.dtpFinish.Size = new System.Drawing.Size(119, 22);
|
|||
|
this.dtpFinish.TabIndex = 21;
|
|||
|
//
|
|||
|
// dtpStart
|
|||
|
//
|
|||
|
this.dtpStart.CustomFormat = "dd-MMM-yyyy";
|
|||
|
this.dtpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|||
|
this.dtpStart.Location = new System.Drawing.Point(16, 15);
|
|||
|
this.dtpStart.Margin = new System.Windows.Forms.Padding(4);
|
|||
|
this.dtpStart.Name = "dtpStart";
|
|||
|
this.dtpStart.Size = new System.Drawing.Size(119, 22);
|
|||
|
this.dtpStart.TabIndex = 20;
|
|||
|
//
|
|||
|
// label10
|
|||
|
//
|
|||
|
this.label10.AutoSize = true;
|
|||
|
this.label10.Location = new System.Drawing.Point(144, 20);
|
|||
|
this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|||
|
this.label10.Name = "label10";
|
|||
|
this.label10.Size = new System.Drawing.Size(72, 17);
|
|||
|
this.label10.TabIndex = 22;
|
|||
|
this.label10.Text = "<- Date ->";
|
|||
|
//
|
|||
|
// txtQuantity
|
|||
|
//
|
|||
|
this.txtQuantity.Location = new System.Drawing.Point(16, 223);
|
|||
|
this.txtQuantity.Margin = new System.Windows.Forms.Padding(4);
|
|||
|
this.txtQuantity.Name = "txtQuantity";
|
|||
|
this.txtQuantity.Size = new System.Drawing.Size(445, 22);
|
|||
|
this.txtQuantity.TabIndex = 5;
|
|||
|
//
|
|||
|
// btnGo
|
|||
|
//
|
|||
|
this.btnGo.Location = new System.Drawing.Point(16, 255);
|
|||
|
this.btnGo.Margin = new System.Windows.Forms.Padding(4);
|
|||
|
this.btnGo.Name = "btnGo";
|
|||
|
this.btnGo.Size = new System.Drawing.Size(200, 28);
|
|||
|
this.btnGo.TabIndex = 24;
|
|||
|
this.btnGo.Text = "Go";
|
|||
|
this.btnGo.UseVisualStyleBackColor = true;
|
|||
|
this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
|
|||
|
//
|
|||
|
// FoodForm
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(479, 298);
|
|||
|
this.Controls.Add(this.btnGo);
|
|||
|
this.Controls.Add(this.dtpFinish);
|
|||
|
this.Controls.Add(this.dtpStart);
|
|||
|
this.Controls.Add(this.label10);
|
|||
|
this.Controls.Add(this.txtQuantity);
|
|||
|
this.Margin = new System.Windows.Forms.Padding(4);
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.Name = "FoodForm";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Text = "Sale Analysis Form";
|
|||
|
this.Load += new System.EventHandler(this.Sale_Analysis_Form_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.DateTimePicker dtpFinish;
|
|||
|
private System.Windows.Forms.DateTimePicker dtpStart;
|
|||
|
private System.Windows.Forms.Label label10;
|
|||
|
private System.Windows.Forms.TextBox txtQuantity;
|
|||
|
private System.Windows.Forms.Button btnGo;
|
|||
|
}
|
|||
|
}
|