119 lines
4.8 KiB
C#
119 lines
4.8 KiB
C#
|
namespace Payroll.Report
|
|||
|
{
|
|||
|
partial class fWorkflowReport
|
|||
|
{
|
|||
|
/// <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.cboWFType = new System.Windows.Forms.ComboBox();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.btnPreview = new System.Windows.Forms.Button();
|
|||
|
this.btnClose = new System.Windows.Forms.Button();
|
|||
|
this.panel1 = new System.Windows.Forms.Panel();
|
|||
|
this.panel1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// cboWFType
|
|||
|
//
|
|||
|
this.cboWFType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|||
|
this.cboWFType.FormattingEnabled = true;
|
|||
|
this.cboWFType.Location = new System.Drawing.Point(96, 10);
|
|||
|
this.cboWFType.Name = "cboWFType";
|
|||
|
this.cboWFType.Size = new System.Drawing.Size(269, 21);
|
|||
|
this.cboWFType.TabIndex = 1;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(11, 13);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(79, 13);
|
|||
|
this.label1.TabIndex = 3;
|
|||
|
this.label1.Text = "Workflow Type";
|
|||
|
//
|
|||
|
// btnPreview
|
|||
|
//
|
|||
|
this.btnPreview.Location = new System.Drawing.Point(375, 6);
|
|||
|
this.btnPreview.Name = "btnPreview";
|
|||
|
this.btnPreview.Size = new System.Drawing.Size(75, 27);
|
|||
|
this.btnPreview.TabIndex = 4;
|
|||
|
this.btnPreview.Text = "&Preview";
|
|||
|
this.btnPreview.UseVisualStyleBackColor = true;
|
|||
|
this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
|
|||
|
//
|
|||
|
// btnClose
|
|||
|
//
|
|||
|
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.btnClose.Location = new System.Drawing.Point(457, 7);
|
|||
|
this.btnClose.Name = "btnClose";
|
|||
|
this.btnClose.Size = new System.Drawing.Size(75, 27);
|
|||
|
this.btnClose.TabIndex = 4;
|
|||
|
this.btnClose.Text = "&Close";
|
|||
|
this.btnClose.UseVisualStyleBackColor = true;
|
|||
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.panel1.Controls.Add(this.label1);
|
|||
|
this.panel1.Controls.Add(this.cboWFType);
|
|||
|
this.panel1.Controls.Add(this.btnPreview);
|
|||
|
this.panel1.Controls.Add(this.btnClose);
|
|||
|
this.panel1.Location = new System.Drawing.Point(9, 10);
|
|||
|
this.panel1.Name = "panel1";
|
|||
|
this.panel1.Size = new System.Drawing.Size(539, 43);
|
|||
|
this.panel1.TabIndex = 5;
|
|||
|
//
|
|||
|
// fWorkflowReport
|
|||
|
//
|
|||
|
this.AcceptButton = this.btnPreview;
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.CancelButton = this.btnClose;
|
|||
|
this.ClientSize = new System.Drawing.Size(557, 61);
|
|||
|
this.Controls.Add(this.panel1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "fWorkflowReport";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Text = "WORKFLOW INFORMATION";
|
|||
|
this.Load += new System.EventHandler(this.fWorkflowReport_Load);
|
|||
|
this.panel1.ResumeLayout(false);
|
|||
|
this.panel1.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.ComboBox cboWFType;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.Button btnPreview;
|
|||
|
private System.Windows.Forms.Button btnClose;
|
|||
|
private System.Windows.Forms.Panel panel1;
|
|||
|
}
|
|||
|
}
|