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

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

?? zkadd.cs

?? 煤礦信息管理系統是基于SuperMap Object
?? CS
?? 第 1 頁 / 共 3 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace MKIms3
{
	/// <summary>
	/// ZKAdd 的摘要說明。
	/// </summary>
	public class ZKAdd : System.Windows.Forms.Form
	{
		public delegate void SendMess ( double x,double y ,double z ,string k_id) ;
		//定義委托類型
		public event SendMess Send ;
       
		private string k_no;
		private double k_x;
		private double k_y;
		private double k_z;
		private double k_h;
		private string k_com;
		private DateTime k_date;
		private string k_other;
		private int k_id;
		private string k_lay;

		private bool bk_no;
		private bool bk_x;
		private bool bk_y;
		private bool bk_z;
		private bool bk_h;
		private bool bk_com;
		private bool bk_lay;

		private DataSet null_Set;
		private DataGridTableStyle GridTableStyle;
		private bool point; //用來標示是直接輸入還是圖上添加,圖上為true

		#region 系統自己生成的字段
		private System.Windows.Forms.GroupBox groupBox4;
		private System.Windows.Forms.Button button_add_ceng;
		private System.Windows.Forms.TextBox textBox2;
		private System.Windows.Forms.Button button_add_kong;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.DateTimePicker dateTimePicker_data;
		private System.Windows.Forms.TextBox txt_other;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label13;
		private System.Windows.Forms.Label label14;
		private System.Windows.Forms.Label label15;
		private System.Windows.Forms.Label label16;
		private System.Windows.Forms.TextBox txt_no;
		private System.Windows.Forms.TextBox txt_lay;
		private System.Windows.Forms.Label label17;
		private System.Windows.Forms.Label label18;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.DataGrid dataGrid_lay;
		
		private System.Windows.Forms.NumericUpDown numericUpDown_x;
		private System.Windows.Forms.NumericUpDown numericUpDown_y;
		private System.Windows.Forms.NumericUpDown numericUpDown_z;
		private System.Windows.Forms.NumericUpDown numericUpDown_h;
		private System.Windows.Forms.TextBox txt_com;
		private System.Windows.Forms.ErrorProvider erp;
		#endregion
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public ZKAdd(double x,double y,bool point)
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
			//
			bk_no = false;
			bk_x= false;
			bk_y= false;
			bk_z= false;
			bk_h= false;
			bk_com= false;
			bk_lay= false;
			this.numericUpDown_x.Value = Convert.ToDecimal(x);
			this.numericUpDown_y.Value =  Convert.ToDecimal(y);
			this.point = point;
		}


		/// <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(ZKAdd));
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.button_add_ceng = new System.Windows.Forms.Button();
			this.textBox2 = new System.Windows.Forms.TextBox();
			this.button_add_kong = new System.Windows.Forms.Button();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.numericUpDown_h = new System.Windows.Forms.NumericUpDown();
			this.numericUpDown_z = new System.Windows.Forms.NumericUpDown();
			this.numericUpDown_y = new System.Windows.Forms.NumericUpDown();
			this.numericUpDown_x = new System.Windows.Forms.NumericUpDown();
			this.dateTimePicker_data = new System.Windows.Forms.DateTimePicker();
			this.txt_other = new System.Windows.Forms.TextBox();
			this.txt_com = new System.Windows.Forms.TextBox();
			this.label10 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.label13 = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label15 = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.txt_no = new System.Windows.Forms.TextBox();
			this.txt_lay = new System.Windows.Forms.TextBox();
			this.label17 = new System.Windows.Forms.Label();
			this.label18 = new System.Windows.Forms.Label();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.dataGrid_lay = new System.Windows.Forms.DataGrid();
			this.erp = new System.Windows.Forms.ErrorProvider();
			this.groupBox4.SuspendLayout();
			this.groupBox3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDown_h)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDown_z)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDown_y)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDown_x)).BeginInit();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid_lay)).BeginInit();
			this.SuspendLayout();
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.button_add_ceng);
			this.groupBox4.Controls.Add(this.textBox2);
			this.groupBox4.Controls.Add(this.button_add_kong);
			this.groupBox4.Location = new System.Drawing.Point(424, 8);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(272, 184);
			this.groupBox4.TabIndex = 10;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "操作說明";
			// 
			// button_add_ceng
			// 
			this.button_add_ceng.Enabled = false;
			this.button_add_ceng.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.button_add_ceng.Location = new System.Drawing.Point(139, 144);
			this.button_add_ceng.Name = "button_add_ceng";
			this.button_add_ceng.Size = new System.Drawing.Size(119, 24);
			this.button_add_ceng.TabIndex = 1;
			this.button_add_ceng.Text = "提交鉆孔煤層信息";
			this.button_add_ceng.Click += new System.EventHandler(this.button_add_ceng_Click);
			// 
			// textBox2
			// 
			this.textBox2.AcceptsReturn = true;
			this.textBox2.BackColor = System.Drawing.SystemColors.Info;
			this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.textBox2.Cursor = System.Windows.Forms.Cursors.No;
			this.textBox2.Enabled = false;
			this.textBox2.ForeColor = System.Drawing.Color.DarkRed;
			this.textBox2.Location = new System.Drawing.Point(8, 16);
			this.textBox2.Multiline = true;
			this.textBox2.Name = "textBox2";
			this.textBox2.Size = new System.Drawing.Size(256, 120);
			this.textBox2.TabIndex = 2;
			this.textBox2.Text = "                                          1.帶(*)的項為必填項 。                 2.首先填寫鉆孔" +
				"基本信息,確認無誤后提交。  3.依次填寫鉆孔煤層信息,確認無誤后提交。  4.您添加的鉆孔只能在系統默認地圖上顯示。  5.巖性說明:您可以從下拉列表框中選擇" +
				",如果所需巖性不存在,請先在巖性管理操作中添加。6.層位說明:例如 P2(2-1)中前一個2為下標“2-1”為上標,其他依此類推。 ";
			// 
			// button_add_kong
			// 
			this.button_add_kong.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.button_add_kong.Location = new System.Drawing.Point(11, 144);
			this.button_add_kong.Name = "button_add_kong";
			this.button_add_kong.Size = new System.Drawing.Size(120, 24);
			this.button_add_kong.TabIndex = 0;
			this.button_add_kong.Text = "提交鉆孔基本信息";
			this.button_add_kong.Click += new System.EventHandler(this.button_add_kong_Click);
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.numericUpDown_h);
			this.groupBox3.Controls.Add(this.numericUpDown_z);
			this.groupBox3.Controls.Add(this.numericUpDown_y);
			this.groupBox3.Controls.Add(this.numericUpDown_x);
			this.groupBox3.Controls.Add(this.dateTimePicker_data);
			this.groupBox3.Controls.Add(this.txt_other);
			this.groupBox3.Controls.Add(this.txt_com);
			this.groupBox3.Controls.Add(this.label10);
			this.groupBox3.Controls.Add(this.label11);
			this.groupBox3.Controls.Add(this.label12);
			this.groupBox3.Controls.Add(this.label13);
			this.groupBox3.Controls.Add(this.label14);
			this.groupBox3.Controls.Add(this.label15);
			this.groupBox3.Controls.Add(this.label16);
			this.groupBox3.Controls.Add(this.txt_no);
			this.groupBox3.Controls.Add(this.txt_lay);
			this.groupBox3.Controls.Add(this.label17);
			this.groupBox3.Controls.Add(this.label18);
			this.groupBox3.Location = new System.Drawing.Point(8, 8);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(408, 184);
			this.groupBox3.TabIndex = 8;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "鉆孔基本信息";
			// 
			// numericUpDown_h
			// 
			this.numericUpDown_h.DecimalPlaces = 2;
			this.numericUpDown_h.Location = new System.Drawing.Point(286, 24);
			this.numericUpDown_h.Maximum = new System.Decimal(new int[] {
																			999999999,
																			0,
																			0,
																			0});
			this.numericUpDown_h.Name = "numericUpDown_h";
			this.numericUpDown_h.Size = new System.Drawing.Size(98, 21);
			this.numericUpDown_h.TabIndex = 4;
			this.numericUpDown_h.ThousandsSeparator = true;
			this.numericUpDown_h.Validated += new System.EventHandler(this.numericUpDown_h_Validated);
			// 
			// numericUpDown_z
			// 
			this.numericUpDown_z.DecimalPlaces = 2;
			this.numericUpDown_z.Location = new System.Drawing.Point(88, 97);
			this.numericUpDown_z.Maximum = new System.Decimal(new int[] {
																			999999999,
																			0,
																			0,
																			0});
			this.numericUpDown_z.Name = "numericUpDown_z";
			this.numericUpDown_z.Size = new System.Drawing.Size(96, 21);
			this.numericUpDown_z.TabIndex = 3;
			this.numericUpDown_z.ThousandsSeparator = true;
			this.numericUpDown_z.Validated += new System.EventHandler(this.numericUpDown_z_Validated);
			// 
			// numericUpDown_y
			// 
			this.numericUpDown_y.DecimalPlaces = 2;
			this.numericUpDown_y.Location = new System.Drawing.Point(88, 73);
			this.numericUpDown_y.Maximum = new System.Decimal(new int[] {
																			999999999,
																			0,
																			0,
																			0});
			this.numericUpDown_y.Name = "numericUpDown_y";
			this.numericUpDown_y.Size = new System.Drawing.Size(96, 21);
			this.numericUpDown_y.TabIndex = 2;
			this.numericUpDown_y.ThousandsSeparator = true;
			this.numericUpDown_y.Validated += new System.EventHandler(this.numericUpDown_y_Validated);
			// 
			// numericUpDown_x
			// 
			this.numericUpDown_x.DecimalPlaces = 2;
			this.numericUpDown_x.Location = new System.Drawing.Point(88, 49);
			this.numericUpDown_x.Maximum = new System.Decimal(new int[] {
																			999999999,
																			0,
																			0,
																			0});
			this.numericUpDown_x.Name = "numericUpDown_x";
			this.numericUpDown_x.Size = new System.Drawing.Size(96, 21);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品一线二线三线| 免费观看成人av| 国产成人免费在线观看| 精品国产伦一区二区三区观看方式| 日韩专区欧美专区| 欧美电影免费观看高清完整版 | 国产精品综合久久| 欧美激情一区二区三区全黄| 粉嫩蜜臀av国产精品网站| 国产精品久久影院| 在线精品国精品国产尤物884a| 亚洲人成7777| 欧美老肥妇做.爰bbww| 捆绑紧缚一区二区三区视频| 欧美亚洲高清一区| 久久成人久久爱| 久久影音资源网| 91亚洲国产成人精品一区二三| 亚洲在线成人精品| 91精品国产乱| 国产a精品视频| 亚洲最新在线观看| 日韩欧美激情在线| 国产99一区视频免费| 一区二区三区在线影院| 欧美一区三区四区| 国产精品一区二区久久精品爱涩 | 精品日韩欧美在线| 91网址在线看| 韩国成人福利片在线播放| 国产精品国产三级国产有无不卡| 色偷偷久久一区二区三区| 国产老肥熟一区二区三区| 亚洲精品福利视频网站| 欧美一卡二卡在线| 色婷婷亚洲综合| 国产精品综合久久| 午夜精品久久久久久不卡8050| 精品福利一区二区三区| 91黄视频在线观看| 成人一级视频在线观看| 美腿丝袜一区二区三区| 亚洲国产aⅴ天堂久久| 国产精品福利一区二区三区| 欧美r级电影在线观看| 欧美中文字幕一二三区视频| 99在线精品一区二区三区| 国产精品一区专区| 久久精品99国产国产精| 一区二区三区国产精华| 国产精品嫩草影院av蜜臀| 精品国产乱码久久久久久牛牛| 欧美三级电影网| 色成年激情久久综合| 成人亚洲一区二区一| 国产一区日韩二区欧美三区| 日日夜夜精品视频免费| 亚洲午夜三级在线| 亚洲一区二区三区不卡国产欧美| 亚洲欧美韩国综合色| 综合久久综合久久| 中文字幕在线不卡视频| 国产精品不卡在线| 亚洲色大成网站www久久九九| 亚洲国产精品传媒在线观看| 久久无码av三级| 久久美女艺术照精彩视频福利播放| 日韩欧美你懂的| 日韩精品专区在线| 日韩免费一区二区| 2024国产精品视频| 国产亚洲美州欧州综合国| 久久久久久久久免费| 久久精品日产第一区二区三区高清版 | 欧美三级欧美一级| 欧美喷水一区二区| 日韩欧美精品三级| 久久精品在线免费观看| 国产肉丝袜一区二区| 国产精品免费丝袜| 亚洲国产一区视频| 久久精品国产久精国产| 国产精品综合网| 91啦中文在线观看| 欧美精品v日韩精品v韩国精品v| 69av一区二区三区| 久久毛片高清国产| 综合久久一区二区三区| 亚洲成a人片在线不卡一二三区| 石原莉奈在线亚洲二区| 国产乱人伦偷精品视频免下载 | 国产精品久久久久久久裸模| 成人免费在线视频| 首页综合国产亚洲丝袜| 国产在线不卡一区| 91国产视频在线观看| 日韩欧美中文字幕精品| 中文字幕亚洲区| 奇米精品一区二区三区在线观看 | 国产精品久久久久永久免费观看| 亚洲制服丝袜一区| 国产一区二区看久久| 欧美性猛片xxxx免费看久爱| 欧美精品一区二区三区视频| 亚洲丝袜制服诱惑| 美腿丝袜一区二区三区| 在线精品观看国产| 国产精品乱码一区二三区小蝌蚪| 亚洲国产一区二区视频| www.一区二区| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 国产精品18久久久久久久久| 91论坛在线播放| 国产亚洲成aⅴ人片在线观看| 香蕉久久夜色精品国产使用方法| 成人午夜在线播放| 精品久久久三级丝袜| 亚洲午夜激情网页| 在线亚洲欧美专区二区| 国产精品网站在线观看| 激情综合色播五月| 91精品国产综合久久久久| 亚洲一区在线视频| www.欧美日韩国产在线| 久久久99精品久久| 国产一级精品在线| 久久中文娱乐网| 理论片日本一区| 欧美大黄免费观看| 蜜乳av一区二区三区| 欧美一区二区私人影院日本| 五月天丁香久久| 欧美一区二区三区在线看 | 欧美一区二区大片| 午夜成人免费视频| 在线不卡中文字幕播放| 亚洲伊人伊色伊影伊综合网| 91福利视频久久久久| 亚洲私人黄色宅男| 欧洲精品一区二区三区在线观看| 国产精品免费看片| 91美女片黄在线观看91美女| 亚洲品质自拍视频网站| 色婷婷精品大在线视频 | 日韩二区在线观看| 日韩一区二区三区视频| 爽好久久久欧美精品| 欧美成人a∨高清免费观看| 久久精品国产在热久久| 久久色.com| 成人网在线播放| 一区二区成人在线| 777精品伊人久久久久大香线蕉| 成人综合激情网| 国产精品成人免费精品自在线观看| 色综合久久88色综合天天6 | 天堂蜜桃91精品| 欧美sm极限捆绑bd| aaa亚洲精品| 亚洲成人1区2区| 久久久一区二区三区| 99久久精品免费精品国产| 亚洲另类春色校园小说| 91麻豆精品国产91久久久使用方法| 久久疯狂做爰流白浆xx| 中文字幕一区二区三区不卡在线| 在线视频国内一区二区| 美女免费视频一区| 亚洲男人天堂一区| 在线综合+亚洲+欧美中文字幕| 国产自产视频一区二区三区| 国产精品成人一区二区三区夜夜夜| 欧美午夜精品免费| 国产成人免费视频网站高清观看视频| 日韩一区在线看| 欧美电视剧在线看免费| 99久久国产免费看| 麻豆成人免费电影| 一区二区三区在线视频观看58| 精品成人一区二区三区四区| 在线中文字幕一区| 成人黄色网址在线观看| 久久精品国产久精国产爱| 亚洲一区在线视频观看| 中文字幕av在线一区二区三区| 欧美日韩国产天堂| 91视视频在线直接观看在线看网页在线看| 日本免费新一区视频| 亚洲人妖av一区二区| 精品国产百合女同互慰| 欧美日韩精品高清| 色综合久久久久久久久| va亚洲va日韩不卡在线观看| 久久精品国产澳门| 奇米色777欧美一区二区| 亚洲人快播电影网| 国产精品女人毛片| 久久久久久久久久久黄色| 欧美一区二区在线不卡| 欧美色欧美亚洲另类二区|