📄 reportsform.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace WindowsApplication3
{
/// <summary>
/// ReportsForm 的摘要说明。
/// </summary>
public class ReportsForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.RadioButton radioButton3;
private System.Windows.Forms.RadioButton radioButton4;
private System.Windows.Forms.Button btnExit;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public ReportsForm()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ReportsForm));
this.label1 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.radioButton4 = new System.Windows.Forms.RadioButton();
this.btnExit = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
this.label1.Image = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
this.label1.Location = new System.Drawing.Point(104, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(304, 23);
this.label1.TabIndex = 0;
this.label1.Text = "Select the radio button to generate the report.";
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.Color.LightGreen;
this.groupBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("groupBox1.BackgroundImage")));
this.groupBox1.Controls.Add(this.radioButton1);
this.groupBox1.Controls.Add(this.radioButton2);
this.groupBox1.Controls.Add(this.radioButton3);
this.groupBox1.Controls.Add(this.radioButton4);
this.groupBox1.Location = new System.Drawing.Point(88, 80);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(336, 200);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Reports";
//
// radioButton1
//
this.radioButton1.Image = ((System.Drawing.Image)(resources.GetObject("radioButton1.Image")));
this.radioButton1.Location = new System.Drawing.Point(24, 32);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(208, 24);
this.radioButton1.TabIndex = 0;
this.radioButton1.Text = "Monthly Consumable Report";
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
//
// radioButton2
//
this.radioButton2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("radioButton2.BackgroundImage")));
this.radioButton2.Location = new System.Drawing.Point(24, 72);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(208, 24);
this.radioButton2.TabIndex = 0;
this.radioButton2.Text = "Monthly Consumer Visit Report";
this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
//
// radioButton3
//
this.radioButton3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("radioButton3.BackgroundImage")));
this.radioButton3.Location = new System.Drawing.Point(24, 112);
this.radioButton3.Name = "radioButton3";
this.radioButton3.Size = new System.Drawing.Size(264, 24);
this.radioButton3.TabIndex = 0;
this.radioButton3.Text = "Monthly Balancing and Alignment Report";
this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
//
// radioButton4
//
this.radioButton4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("radioButton4.BackgroundImage")));
this.radioButton4.Location = new System.Drawing.Point(24, 152);
this.radioButton4.Name = "radioButton4";
this.radioButton4.Size = new System.Drawing.Size(224, 24);
this.radioButton4.TabIndex = 0;
this.radioButton4.Text = "Monthly Worker Report";
this.radioButton4.CheckedChanged += new System.EventHandler(this.radioButton4_CheckedChanged);
//
// btnExit
//
this.btnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnExit.BackgroundImage")));
this.btnExit.ForeColor = System.Drawing.SystemColors.ControlText;
this.btnExit.Location = new System.Drawing.Point(216, 312);
this.btnExit.Name = "btnExit";
this.btnExit.TabIndex = 2;
this.btnExit.Text = "E&xit";
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// ReportsForm
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(552, 365);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.label1);
this.Name = "ReportsForm";
this.Text = "ReportsForm";
this.Load += new System.EventHandler(this.ReportsForm_Load);
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private void radioButton4_CheckedChanged(object sender, System.EventArgs e)
{
MonthlyWorkerReport newForm = new MonthlyWorkerReport();
newForm.Show();
this.Hide();
}
private void radioButton1_CheckedChanged(object sender, System.EventArgs e)
{
ConsumableForm newForm = new ConsumableForm();
newForm.Show();
this.Hide();
}
private void radioButton2_CheckedChanged(object sender, System.EventArgs e)
{
CustomerVisitForm newForm = new CustomerVisitForm ();
newForm.Show();
this.Hide();
}
private void radioButton3_CheckedChanged(object sender, System.EventArgs e)
{
BalancinandAlignmentForm newForm = new BalancinandAlignmentForm ();
newForm.Show();
this.Hide();
}
private void btnExit_Click(object sender, System.EventArgs e)
{
this.Close();
}
private void ReportsForm_Load(object sender, System.EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -