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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? nlsfk.cs

?? 人事管理系統 時間比較長樂! 不過還算經典 有興趣看一
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace Employee
{
	/// <summary>
	/// nlsfk 的摘要說明。
	/// </summary>
	public class nlsfk : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Panel screenPanel;
		private System.Windows.Forms.Panel nextPanel;
		private System.Windows.Forms.Timer timer;
		private System.Windows.Forms.MainMenu mainMenu;
		private System.Windows.Forms.MenuItem menuItem4;
		private System.Windows.Forms.MenuItem gameMenu;
		private System.Windows.Forms.MenuItem startMenu;
		private System.Windows.Forms.MenuItem stopMenu;
		private System.Windows.Forms.MenuItem exitMenu;
		private System.Windows.Forms.MenuItem helpMenu;
		private System.Windows.Forms.MenuItem aboutMenu;
		private System.ComponentModel.IContainer components;
		private Random rndShape = new Random();
		private Shape nextShape;
		private Body mainBody = new Body();
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label speedLabel;
		private System.Windows.Forms.Label scoreLabel;
		private GAME_STATUS gameStatus;
		
		private int speed;
		private int score;
		private System.Windows.Forms.Label linesLabel;
		private System.Windows.Forms.PictureBox pictureBox1;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.PictureBox pictureBox2;
		private System.Windows.Forms.PictureBox pictureBox3;
		private System.Windows.Forms.PictureBox pictureBox4;
		private System.Windows.Forms.PictureBox pictureBox5;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label9;
		private int lines;

		enum GAME_STATUS {GAME_STOP, GAME_RUN, GAME_OVER};

		public nlsfk()
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
			//
			Shape.InitTetrisDefine();
		}

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

		#region Windows Form Designer generated code
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(nlsfk));
			this.screenPanel = new System.Windows.Forms.Panel();
			this.nextPanel = new System.Windows.Forms.Panel();
			this.timer = new System.Windows.Forms.Timer(this.components);
			this.mainMenu = new System.Windows.Forms.MainMenu();
			this.gameMenu = new System.Windows.Forms.MenuItem();
			this.startMenu = new System.Windows.Forms.MenuItem();
			this.stopMenu = new System.Windows.Forms.MenuItem();
			this.menuItem4 = new System.Windows.Forms.MenuItem();
			this.exitMenu = new System.Windows.Forms.MenuItem();
			this.helpMenu = new System.Windows.Forms.MenuItem();
			this.aboutMenu = new System.Windows.Forms.MenuItem();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.speedLabel = new System.Windows.Forms.Label();
			this.linesLabel = new System.Windows.Forms.Label();
			this.scoreLabel = new System.Windows.Forms.Label();
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.label5 = new System.Windows.Forms.Label();
			this.pictureBox2 = new System.Windows.Forms.PictureBox();
			this.pictureBox3 = new System.Windows.Forms.PictureBox();
			this.pictureBox4 = new System.Windows.Forms.PictureBox();
			this.pictureBox5 = new System.Windows.Forms.PictureBox();
			this.label6 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// screenPanel
			// 
			this.screenPanel.BackColor = System.Drawing.Color.White;
			this.screenPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.screenPanel.Dock = System.Windows.Forms.DockStyle.Left;
			this.screenPanel.Location = new System.Drawing.Point(0, 0);
			this.screenPanel.Name = "screenPanel";
			this.screenPanel.Size = new System.Drawing.Size(206, 305);
			this.screenPanel.TabIndex = 0;
			// 
			// nextPanel
			// 
			this.nextPanel.BackColor = System.Drawing.Color.White;
			this.nextPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.nextPanel.Location = new System.Drawing.Point(280, 0);
			this.nextPanel.Name = "nextPanel";
			this.nextPanel.Size = new System.Drawing.Size(104, 96);
			this.nextPanel.TabIndex = 1;
			// 
			// timer
			// 
			this.timer.Interval = 300;
			this.timer.Tick += new System.EventHandler(this.OnTimer);
			// 
			// mainMenu
			// 
			this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																					 this.gameMenu,
																					 this.helpMenu});
			// 
			// gameMenu
			// 
			this.gameMenu.Index = 0;
			this.gameMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																					 this.startMenu,
																					 this.stopMenu,
																					 this.menuItem4,
																					 this.exitMenu});
			this.gameMenu.Text = "文件";
			// 
			// startMenu
			// 
			this.startMenu.Index = 0;
			this.startMenu.Text = "開始";
			this.startMenu.Click += new System.EventHandler(this.startMenu_Click);
			// 
			// stopMenu
			// 
			this.stopMenu.Enabled = false;
			this.stopMenu.Index = 1;
			this.stopMenu.Text = "停止";
			this.stopMenu.Click += new System.EventHandler(this.stopMenu_Click);
			// 
			// menuItem4
			// 
			this.menuItem4.Index = 2;
			this.menuItem4.Text = "-";
			// 
			// exitMenu
			// 
			this.exitMenu.Index = 3;
			this.exitMenu.Text = "退出";
			this.exitMenu.Click += new System.EventHandler(this.exitMenu_Click);
			// 
			// helpMenu
			// 
			this.helpMenu.Index = 1;
			this.helpMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																					 this.aboutMenu});
			this.helpMenu.Text = "幫助";
			// 
			// aboutMenu
			// 
			this.aboutMenu.Index = 0;
			this.aboutMenu.Text = "關于";
			this.aboutMenu.Click += new System.EventHandler(this.aboutMenu_Click);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(216, 8);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(56, 16);
			this.label1.TabIndex = 2;
			this.label1.Text = "下一個:";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(216, 115);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(56, 16);
			this.label2.TabIndex = 3;
			this.label2.Text = "分 數:";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(216, 139);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(56, 16);
			this.label3.TabIndex = 4;
			this.label3.Text = "行 數:";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(216, 163);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(56, 16);
			this.label4.TabIndex = 5;
			this.label4.Text = "速 度:";
			// 
			// speedLabel
			// 
			this.speedLabel.Location = new System.Drawing.Point(288, 163);
			this.speedLabel.Name = "speedLabel";
			this.speedLabel.Size = new System.Drawing.Size(56, 16);
			this.speedLabel.TabIndex = 8;
			this.speedLabel.Text = "0";
			// 
			// linesLabel
			// 
			this.linesLabel.Location = new System.Drawing.Point(288, 139);
			this.linesLabel.Name = "linesLabel";
			this.linesLabel.Size = new System.Drawing.Size(56, 16);
			this.linesLabel.TabIndex = 7;
			this.linesLabel.Text = "0";
			// 
			// scoreLabel
			// 
			this.scoreLabel.Location = new System.Drawing.Point(288, 115);
			this.scoreLabel.Name = "scoreLabel";
			this.scoreLabel.Size = new System.Drawing.Size(56, 16);
			this.scoreLabel.TabIndex = 6;
			this.scoreLabel.Text = "0";
			// 
			// pictureBox1
			// 
			this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
			this.pictureBox1.Location = new System.Drawing.Point(275, 195);
			this.pictureBox1.Name = "pictureBox1";
			this.pictureBox1.Size = new System.Drawing.Size(110, 105);
			this.pictureBox1.TabIndex = 9;
			this.pictureBox1.TabStop = false;
			// 
			// label5
			// 
			this.label5.ForeColor = System.Drawing.Color.Fuchsia;
			this.label5.Location = new System.Drawing.Point(208, 187);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(54, 16);
			this.label5.TabIndex = 10;
			this.label5.Text = "達也提醒";
			this.label5.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// pictureBox2
			// 
			this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
			this.pictureBox2.Location = new System.Drawing.Point(208, 208);
			this.pictureBox2.Name = "pictureBox2";
			this.pictureBox2.Size = new System.Drawing.Size(22, 22);
			this.pictureBox2.TabIndex = 11;
			this.pictureBox2.TabStop = false;
			// 
			// pictureBox3
			// 
			this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
			this.pictureBox3.Location = new System.Drawing.Point(208, 230);
			this.pictureBox3.Name = "pictureBox3";
			this.pictureBox3.Size = new System.Drawing.Size(22, 22);
			this.pictureBox3.TabIndex = 12;
			this.pictureBox3.TabStop = false;
			// 
			// pictureBox4
			// 
			this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
			this.pictureBox4.Location = new System.Drawing.Point(208, 252);
			this.pictureBox4.Name = "pictureBox4";
			this.pictureBox4.Size = new System.Drawing.Size(22, 22);
			this.pictureBox4.TabIndex = 13;
			this.pictureBox4.TabStop = false;
			// 
			// pictureBox5
			// 
			this.pictureBox5.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image")));
			this.pictureBox5.Location = new System.Drawing.Point(208, 274);
			this.pictureBox5.Name = "pictureBox5";
			this.pictureBox5.Size = new System.Drawing.Size(22, 22);
			this.pictureBox5.TabIndex = 14;
			this.pictureBox5.TabStop = false;
			// 
			// label6
			// 
			this.label6.ForeColor = System.Drawing.Color.Fuchsia;
			this.label6.Location = new System.Drawing.Point(235, 208);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(30, 22);
			this.label6.TabIndex = 15;
			this.label6.Text = "左移";
			this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// label7
			// 
			this.label7.ForeColor = System.Drawing.Color.Fuchsia;
			this.label7.Location = new System.Drawing.Point(235, 230);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩影视精彩在线| 欧美精品在线观看播放| 欧美日韩你懂得| 欧美激情一二三区| 久久精品国产久精国产| 欧美亚洲一区二区在线观看| 国产女人18水真多18精品一级做 | 中文在线一区二区| 日本成人中文字幕| 欧美在线三级电影| 中文字幕日韩一区| 国产成人久久精品77777最新版本| 欧美日韩久久一区二区| 亚洲精品写真福利| 99国产精品久久久久久久久久| 精品盗摄一区二区三区| 日韩专区中文字幕一区二区| 91免费视频观看| 国产精品麻豆视频| 成人午夜看片网址| 国产亚洲自拍一区| 国产精选一区二区三区| 欧美不卡视频一区| 免费不卡在线视频| 91麻豆精品国产综合久久久久久| 亚洲精品乱码久久久久久日本蜜臀| 丁香一区二区三区| 日本一区二区三区高清不卡| 国模无码大尺度一区二区三区| 日韩一区国产二区欧美三区| 日本成人超碰在线观看| 8x8x8国产精品| 日本 国产 欧美色综合| 欧美电影在线免费观看| 青青草97国产精品免费观看 | 五月激情综合色| 欧美日韩1区2区| 天堂蜜桃91精品| 日韩午夜中文字幕| 国产一区福利在线| 亚洲国产精品精华液2区45| 国产成人精品一区二区三区四区| 国产亚洲精品久| 波多野结衣亚洲| 伊人婷婷欧美激情| 欧美日韩一区二区三区视频| 丝袜a∨在线一区二区三区不卡| 欧美日韩精品综合在线| 美女一区二区在线观看| 国产亚洲欧美在线| 99热这里都是精品| 香蕉久久一区二区不卡无毒影院| 欧美一区二区视频在线观看| 国产真实乱对白精彩久久| 欧美激情在线免费观看| 欧美自拍丝袜亚洲| 蜜芽一区二区三区| 国产三级久久久| 在线观看91精品国产入口| 久久精品国产亚洲一区二区三区| 国产日产亚洲精品系列| 色视频成人在线观看免| 日韩精品色哟哟| 国产女人aaa级久久久级| 欧美在线免费观看亚洲| 国产一区二区三区视频在线播放| 国产精品伦一区| 制服丝袜亚洲精品中文字幕| 国产精品一区在线观看你懂的| 亚洲蜜桃精久久久久久久| 日韩一区二区三| av在线播放成人| 久久精品国产久精国产爱| 亚洲免费电影在线| 久久久久国产一区二区三区四区 | 成人综合在线网站| 三级一区在线视频先锋 | 97久久久精品综合88久久| 日本亚洲电影天堂| 亚洲精品五月天| 久久久亚洲欧洲日产国码αv| 欧美午夜电影网| 成人三级伦理片| 激情深爱一区二区| 午夜亚洲国产au精品一区二区| 国产日韩高清在线| 日韩欧美二区三区| 麻豆精品视频在线观看| 久久精品一区二区三区不卡| 欧美三区在线观看| 99久久综合99久久综合网站| 国产在线播精品第三| 亚洲国产成人高清精品| 国产精品成人午夜| 久久久三级国产网站| 欧美一级高清片在线观看| 欧美男同性恋视频网站| 色综合天天综合给合国产| 丁香亚洲综合激情啪啪综合| 99re热视频精品| 成人亚洲精品久久久久软件| 美女精品自拍一二三四| 午夜激情综合网| 午夜精品成人在线| 亚洲高清免费观看| 亚洲高清免费一级二级三级| 一片黄亚洲嫩模| 夜色激情一区二区| 一区二区三区四区视频精品免费| 亚洲欧美一区二区三区孕妇| 亚洲色图欧洲色图| 日韩一区日韩二区| 亚洲欧洲成人自拍| 亚洲精品国产精品乱码不99| 亚洲日本成人在线观看| 亚洲三级在线播放| 亚洲欧美偷拍卡通变态| 亚洲精品ww久久久久久p站| 亚洲黄色尤物视频| 亚洲综合色视频| 丝袜亚洲另类欧美| 理论电影国产精品| 国产成人久久精品77777最新版本| 国产精品18久久久| 99久久精品国产一区二区三区| 91亚洲永久精品| 91福利在线看| 91精品国产一区二区人妖| 日韩欧美一级二级三级久久久| 精品国产露脸精彩对白 | 国产在线精品一区二区不卡了| 久久精品噜噜噜成人88aⅴ| 国产精品一区二区91| 成人精品鲁一区一区二区| www日韩大片| 亚洲视频电影在线| 91麻豆文化传媒在线观看| 色噜噜狠狠色综合欧洲selulu| 91久久精品网| 日韩欧美亚洲一区二区| 国产亚洲制服色| 一区二区三区不卡在线观看| 天天色 色综合| 国产成人午夜视频| 一本色道久久综合精品竹菊| 欧美久久久影院| 久久综合狠狠综合久久综合88 | 亚洲成人激情社区| 国产在线看一区| 色综合天天综合狠狠| 日韩欧美亚洲国产另类| 国产精品不卡在线| 日韩在线卡一卡二| 国产99精品国产| 欧美日韩精品欧美日韩精品| 久久久一区二区三区| 亚洲成av人在线观看| 粉嫩久久99精品久久久久久夜| 欧美日韩一区二区三区在线看| 精品国产精品网麻豆系列| 亚洲精品第1页| 粉嫩蜜臀av国产精品网站| 91精品国产综合久久久久久| 国产精品高清亚洲| 免费一级欧美片在线观看| 色天天综合色天天久久| 欧美国产综合色视频| 日韩高清在线观看| 91国产免费看| 国产精品不卡一区二区三区| 激情文学综合插| 欧美一区二区三区四区视频| 玉米视频成人免费看| 成人午夜精品一区二区三区| 日韩天堂在线观看| 视频一区中文字幕| 在线观看一区日韩| 亚洲欧美中日韩| 国产成人h网站| 精品少妇一区二区三区在线视频| 亚洲成人午夜影院| 日本精品视频一区二区三区| 欧美国产1区2区| 国产一区二区三区久久悠悠色av| 91精品国产日韩91久久久久久| 一区二区三区美女| 色综合久久久久综合99| 亚洲欧洲av色图| 成人激情免费网站| 国产亚洲一区二区三区在线观看 | 国产欧美日韩在线| 激情深爱一区二区| 久久综合给合久久狠狠狠97色69| 手机精品视频在线观看| 欧美三级电影网| 亚洲午夜免费电影| 欧美日韩国产区一| 石原莉奈在线亚洲三区| 91精品久久久久久久99蜜桃| 亚洲第一精品在线|