亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? reportsform.cs

?? 跟蹤每個(gè)月客戶的造訪次數(shù)
?? CS
字號(hào):
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>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public ReportsForm()
		{
			//
			// Windows 窗體設(shè)計(jì)器支持所必需的
			//
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設(shè)計(jì)器生成的代碼
		/// <summary>
		/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </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)
		{
		
		}
	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成人av资源| 欧洲一区在线观看| 欧美性感一区二区三区| 久久综合九色综合97婷婷| 一区二区三区中文字幕电影| 国产麻豆日韩欧美久久| 欧美精品久久久久久久久老牛影院| 国产精品嫩草影院com| 韩国毛片一区二区三区| 欧美二区乱c少妇| 亚洲国产欧美在线| 97久久超碰精品国产| 国产欧美日韩久久| 国产一区二区三区日韩| 日韩久久久久久| 美日韩黄色大片| 91精品国产aⅴ一区二区| 亚洲一区二区在线视频| 成人国产电影网| 中文字幕不卡三区| 国产a视频精品免费观看| 精品久久人人做人人爽| 美女视频第一区二区三区免费观看网站 | 2023国产一二三区日本精品2022| 午夜日韩在线观看| 欧美吞精做爰啪啪高潮| 亚洲精品国产无天堂网2021| 色综合久久88色综合天天| 国产精品天干天干在线综合| 福利91精品一区二区三区| 国产亚洲婷婷免费| 国产成人午夜片在线观看高清观看| 日韩一区二区三区电影在线观看| 亚洲图片欧美一区| 欧美欧美午夜aⅴ在线观看| 日韩在线一区二区| 日韩一级免费观看| 天堂成人国产精品一区| 91精品国产色综合久久不卡蜜臀 | 欧美三区免费完整视频在线观看| 亚洲日穴在线视频| 欧美日韩一级大片网址| 日产欧产美韩系列久久99| 日韩色在线观看| 国产精品自在欧美一区| 国产精品青草综合久久久久99| av不卡免费电影| 亚洲一区二区三区精品在线| 6080国产精品一区二区| 老色鬼精品视频在线观看播放| 精品国产欧美一区二区| www.66久久| 日韩国产一二三区| 国产精品美女久久久久久| 在线看不卡av| 精品一区二区三区久久久| 国产精品进线69影院| 欧美日韩专区在线| 国产一区二区三区蝌蚪| 亚洲精品日日夜夜| 日韩欧美一级二级| av一区二区不卡| 日本 国产 欧美色综合| 中文字幕一区二区在线观看| 欧美日韩你懂的| 成人av在线播放网址| 日本女优在线视频一区二区| 中文文精品字幕一区二区| 欧美日韩一区二区在线观看视频 | 久久综合精品国产一区二区三区| 国产精品一区一区三区| 伊人色综合久久天天| 精品三级在线看| 91福利区一区二区三区| 老色鬼精品视频在线观看播放| 日韩毛片在线免费观看| 精品粉嫩超白一线天av| 欧美在线观看18| 国产成人av电影在线| 午夜激情一区二区三区| 国产精品久久久久久久久快鸭 | 中文字幕日韩一区| 91精品国产免费久久综合| 不卡av在线网| 久久精品国产澳门| 亚洲影院理伦片| 亚洲国产精品成人综合色在线婷婷| 在线综合+亚洲+欧美中文字幕| gogo大胆日本视频一区| 精品亚洲aⅴ乱码一区二区三区| 亚洲精品国久久99热| 国产日韩欧美精品综合| 精品免费视频一区二区| 欧美日韩在线免费视频| 色综合av在线| 91影视在线播放| 99久久婷婷国产| 粉嫩av亚洲一区二区图片| 国模冰冰炮一区二区| 日本不卡视频在线| 香港成人在线视频| 亚洲国产美女搞黄色| 亚洲欧美另类图片小说| 专区另类欧美日韩| 国产精品久久久久aaaa樱花| 国产日韩欧美a| 国产亚洲欧美一区在线观看| www日韩大片| 久久久噜噜噜久久中文字幕色伊伊 | 日本高清无吗v一区| www.欧美色图| 99国产精品一区| 99视频有精品| 91麻豆.com| 日本精品免费观看高清观看| 一本久久综合亚洲鲁鲁五月天| 99久久国产综合精品色伊| 成人黄色在线看| 成人av资源网站| 色综合欧美在线| 欧美性色黄大片| 91精品国产品国语在线不卡| 日韩无一区二区| 欧美精品一区二区三区蜜桃视频 | 日韩一级免费观看| xfplay精品久久| 国产精品久久久久精k8| 亚洲人成网站影音先锋播放| 亚洲一区二区高清| 日韩vs国产vs欧美| 国产麻豆成人精品| 91网页版在线| 欧美夫妻性生活| 久久久久久久久久电影| 国产精品污网站| 亚洲永久免费av| 狠狠色狠狠色综合日日91app| 国产91高潮流白浆在线麻豆| 91浏览器在线视频| 日韩欧美中文字幕公布| 欧美国产97人人爽人人喊| 一区二区三区在线观看国产| 日产欧产美韩系列久久99| 国产成人精品一区二区三区四区| 成人精品一区二区三区中文字幕| 色先锋aa成人| 日韩免费视频一区| 成人欧美一区二区三区| 日韩成人一级大片| 不卡电影一区二区三区| 91麻豆精品久久久久蜜臀| 国产色产综合色产在线视频 | 久热成人在线视频| 99久久婷婷国产综合精品电影| 欧美另类变人与禽xxxxx| 久久久九九九九| 天堂久久久久va久久久久| av在线播放成人| 欧美成人午夜电影| 亚洲精品乱码久久久久久黑人| 麻豆一区二区三区| 91精品办公室少妇高潮对白| 精品日韩欧美一区二区| 亚洲国产精品久久久久婷婷884| 国内久久精品视频| 欧美制服丝袜第一页| 欧美激情一区在线| 激情丁香综合五月| 欧美精品乱码久久久久久按摩| 亚洲欧洲日韩在线| 国产精品影音先锋| 4438x亚洲最大成人网| 亚洲欧美激情小说另类| 国产成人午夜精品影院观看视频| 91精品国产乱| 香港成人在线视频| 欧美亚洲综合在线| 国产精品久久久久久亚洲伦| 国产精品影视网| 日韩精品专区在线影院观看| 三级亚洲高清视频| 欧美日韩精品一区视频| 亚洲丝袜美腿综合| 99精品国产99久久久久久白柏| 久久婷婷一区二区三区| 精品亚洲成av人在线观看| 欧美电影影音先锋| 日日夜夜精品视频免费| 欧美视频中文字幕| 一区二区三区欧美久久| 91视频91自| 亚洲美女区一区| 欧美在线不卡视频| 亚洲综合久久久久| 精品1区2区3区| 午夜精品福利在线| 欧美日韩精品一区二区| 天天影视涩香欲综合网| 欧美美女喷水视频| 日本欧美加勒比视频|