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

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

?? attributequery.cs

?? 利用CSharp二次開發的地理屬性查詢
?? CS
?? 第 1 頁 / 共 3 頁
字號:
/*
 Copyright 1995-2005 ESRI

 All rights reserved under the copyright laws of the United States.

 You may freely redistribute and use this sample code, with or without modification.

 Disclaimer: THE SAMPLE CODE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 
 WARRANTIES, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ESRI OR 
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 
 OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 INTERRUPTION) SUSTAINED BY YOU OR A THIRD PARTY, HOWEVER CAUSED AND ON ANY 
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ARISING IN ANY 
 WAY OUT OF THE USE OF THIS SAMPLE CODE, EVEN IF ADVISED OF THE POSSIBILITY OF 
 SUCH DAMAGE.

 For additional information contact: Environmental Systems Research Institute, Inc.

 Attn: Contracts Dept.

 380 New York Street

 Redlands, California, U.S.A. 92373 

 Email: contracts@esri.com
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.ReaderControl;

namespace AttributeQuery
{
	/// <summary>
	/// Summary description for Form1.
	/// </summary>
	public class AttributeQuery : System.Windows.Forms.Form
	{
		private AxMSFlexGridLib.AxMSFlexGrid axMSFlexGrid1;
		private AxMSFlexGridLib.AxMSFlexGrid axMSFlexGrid2;
		private ESRI.ArcGIS.ReaderControl.AxReaderControl axReaderControl1;
		private System.Windows.Forms.Button cmdMeetZoomTo;
		private System.Windows.Forms.Button cmdMeetCenterAt;
		private System.Windows.Forms.Button cmdMeetFlash;
		private System.Windows.Forms.Button cmdFailZoomTo;
		private System.Windows.Forms.Button cmdFailCenterAt;
		private System.Windows.Forms.Button cmdFailFlash;
		private System.Windows.Forms.Button cmdOpen;
		private System.Windows.Forms.RadioButton optZoomIn;
		private System.Windows.Forms.RadioButton optZoomOut;
		private System.Windows.Forms.RadioButton optPan;
		private System.Windows.Forms.Button cmdFullExtent;
		private System.Windows.Forms.OpenFileDialog openFileDialog1;
		private System.Windows.Forms.GroupBox grpBox;
		private System.Windows.Forms.RadioButton optString;
		private System.Windows.Forms.RadioButton optNumber;
		private System.Windows.Forms.ComboBox cboOperator;
		private System.Windows.Forms.ComboBox cboFields;
		private System.Windows.Forms.ComboBox cboLayers;
		private System.Windows.Forms.TextBox txtValue;
		private System.Windows.Forms.Label lblMeets;
		private System.Windows.Forms.Label lblFails;
		private System.Windows.Forms.Button cmdQuery; 

		private System.Windows.Forms.Label lblLayerToQuery;
		private System.Windows.Forms.Label lblFieldType;
		private System.Windows.Forms.Label lblField;
		private System.Windows.Forms.Label lblOperator;
		private System.Windows.Forms.Label lblValue; 

		private System.Collections.Hashtable m_LayersIndex;
		private ARFeatureSet m_arFeatureSetMeets;
		private ARFeatureSet m_arFeatureSetFails;
		private m_InverseOperators[] InverseOperator = new m_InverseOperators[7];
		private ESRI.ArcGIS.LicenseControl.AxLicenseControl axLicenseControl1;

		private System.ComponentModel.Container components = null;
		struct m_InverseOperators
		{
			public string input;
			public string inverse;
		}
		public AttributeQuery()
		{
			// Required for Windows Form Designer support
			InitializeComponent();
		}

		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (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()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AttributeQuery));
			this.axMSFlexGrid1 = new AxMSFlexGridLib.AxMSFlexGrid();
			this.axMSFlexGrid2 = new AxMSFlexGridLib.AxMSFlexGrid();
			this.axReaderControl1 = new ESRI.ArcGIS.ReaderControl.AxReaderControl();
			this.cmdMeetZoomTo = new System.Windows.Forms.Button();
			this.cmdMeetCenterAt = new System.Windows.Forms.Button();
			this.cmdMeetFlash = new System.Windows.Forms.Button();
			this.cmdFailZoomTo = new System.Windows.Forms.Button();
			this.cmdFailCenterAt = new System.Windows.Forms.Button();
			this.cmdFailFlash = new System.Windows.Forms.Button();
			this.cmdOpen = new System.Windows.Forms.Button();
			this.optZoomIn = new System.Windows.Forms.RadioButton();
			this.optZoomOut = new System.Windows.Forms.RadioButton();
			this.optPan = new System.Windows.Forms.RadioButton();
			this.cmdFullExtent = new System.Windows.Forms.Button();
			this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
			this.grpBox = new System.Windows.Forms.GroupBox();
			this.lblValue = new System.Windows.Forms.Label();
			this.lblOperator = new System.Windows.Forms.Label();
			this.lblField = new System.Windows.Forms.Label();
			this.lblFieldType = new System.Windows.Forms.Label();
			this.lblLayerToQuery = new System.Windows.Forms.Label();
			this.cmdQuery = new System.Windows.Forms.Button();
			this.txtValue = new System.Windows.Forms.TextBox();
			this.cboLayers = new System.Windows.Forms.ComboBox();
			this.optString = new System.Windows.Forms.RadioButton();
			this.optNumber = new System.Windows.Forms.RadioButton();
			this.cboOperator = new System.Windows.Forms.ComboBox();
			this.cboFields = new System.Windows.Forms.ComboBox();
			this.lblMeets = new System.Windows.Forms.Label();
			this.lblFails = new System.Windows.Forms.Label();
			this.axLicenseControl1 = new ESRI.ArcGIS.LicenseControl.AxLicenseControl();
			((System.ComponentModel.ISupportInitialize)(this.axMSFlexGrid1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.axMSFlexGrid2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.axReaderControl1)).BeginInit();
			this.grpBox.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.axLicenseControl1)).BeginInit();
			this.SuspendLayout();
			// 
			// axMSFlexGrid1
			// 
			this.axMSFlexGrid1.Location = new System.Drawing.Point(8, 384);
			this.axMSFlexGrid1.Name = "axMSFlexGrid1";
			this.axMSFlexGrid1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSFlexGrid1.OcxState")));
			this.axMSFlexGrid1.Size = new System.Drawing.Size(344, 104);
			this.axMSFlexGrid1.TabIndex = 0;
			// 
			// axMSFlexGrid2
			// 
			this.axMSFlexGrid2.Location = new System.Drawing.Point(360, 384);
			this.axMSFlexGrid2.Name = "axMSFlexGrid2";
			this.axMSFlexGrid2.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMSFlexGrid2.OcxState")));
			this.axMSFlexGrid2.Size = new System.Drawing.Size(344, 104);
			this.axMSFlexGrid2.TabIndex = 1;
			// 
			// axReaderControl1
			// 
			this.axReaderControl1.Location = new System.Drawing.Point(8, 48);
			this.axReaderControl1.Name = "axReaderControl1";
			this.axReaderControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axReaderControl1.OcxState")));
			this.axReaderControl1.Size = new System.Drawing.Size(536, 304);
			this.axReaderControl1.TabIndex = 2;
			// 
			// cmdMeetZoomTo
			// 
			this.cmdMeetZoomTo.Location = new System.Drawing.Point(8, 488);
			this.cmdMeetZoomTo.Name = "cmdMeetZoomTo";
			this.cmdMeetZoomTo.Size = new System.Drawing.Size(112, 24);
			this.cmdMeetZoomTo.TabIndex = 3;
			this.cmdMeetZoomTo.Text = "Zoom To";
			this.cmdMeetZoomTo.Click += new System.EventHandler(this.MixedDisplayResults_Click);
			// 
			// cmdMeetCenterAt
			// 
			this.cmdMeetCenterAt.Location = new System.Drawing.Point(128, 488);
			this.cmdMeetCenterAt.Name = "cmdMeetCenterAt";
			this.cmdMeetCenterAt.Size = new System.Drawing.Size(112, 24);
			this.cmdMeetCenterAt.TabIndex = 4;
			this.cmdMeetCenterAt.Text = "Center At";
			this.cmdMeetCenterAt.Click += new System.EventHandler(this.MixedDisplayResults_Click);
			// 
			// cmdMeetFlash
			// 
			this.cmdMeetFlash.Location = new System.Drawing.Point(248, 488);
			this.cmdMeetFlash.Name = "cmdMeetFlash";
			this.cmdMeetFlash.Size = new System.Drawing.Size(104, 24);
			this.cmdMeetFlash.TabIndex = 5;
			this.cmdMeetFlash.Text = "Flash";
			this.cmdMeetFlash.Click += new System.EventHandler(this.MixedDisplayResults_Click);
			// 
			// cmdFailZoomTo
			// 
			this.cmdFailZoomTo.Location = new System.Drawing.Point(360, 488);
			this.cmdFailZoomTo.Name = "cmdFailZoomTo";
			this.cmdFailZoomTo.Size = new System.Drawing.Size(112, 24);
			this.cmdFailZoomTo.TabIndex = 6;
			this.cmdFailZoomTo.Text = "Zoom To";
			this.cmdFailZoomTo.Click += new System.EventHandler(this.MixedDisplayResults_Click);
			// 
			// cmdFailCenterAt
			// 
			this.cmdFailCenterAt.Location = new System.Drawing.Point(480, 488);
			this.cmdFailCenterAt.Name = "cmdFailCenterAt";
			this.cmdFailCenterAt.Size = new System.Drawing.Size(112, 24);
			this.cmdFailCenterAt.TabIndex = 7;
			this.cmdFailCenterAt.Text = "Center At";
			this.cmdFailCenterAt.Click += new System.EventHandler(this.MixedDisplayResults_Click);
			// 
			// cmdFailFlash
			// 
			this.cmdFailFlash.Location = new System.Drawing.Point(600, 488);
			this.cmdFailFlash.Name = "cmdFailFlash";
			this.cmdFailFlash.Size = new System.Drawing.Size(104, 24);
			this.cmdFailFlash.TabIndex = 8;
			this.cmdFailFlash.Text = "Flash";
			this.cmdFailFlash.Click += new System.EventHandler(this.MixedDisplayResults_Click);
			// 
			// cmdOpen
			// 
			this.cmdOpen.Location = new System.Drawing.Point(8, 8);
			this.cmdOpen.Name = "cmdOpen";
			this.cmdOpen.Size = new System.Drawing.Size(72, 24);
			this.cmdOpen.TabIndex = 9;
			this.cmdOpen.Text = "Open";
			this.cmdOpen.Click += new System.EventHandler(this.cmdOpen_Click);
			// 
			// optZoomIn
			// 
			this.optZoomIn.Appearance = System.Windows.Forms.Appearance.Button;
			this.optZoomIn.Location = new System.Drawing.Point(80, 8);
			this.optZoomIn.Name = "optZoomIn";
			this.optZoomIn.Size = new System.Drawing.Size(72, 24);
			this.optZoomIn.TabIndex = 10;
			this.optZoomIn.Text = "Zoom In";
			this.optZoomIn.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.optZoomIn.Click += new System.EventHandler(this.MixedControls_Click);
			// 
			// optZoomOut
			// 
			this.optZoomOut.Appearance = System.Windows.Forms.Appearance.Button;
			this.optZoomOut.Location = new System.Drawing.Point(152, 8);
			this.optZoomOut.Name = "optZoomOut";
			this.optZoomOut.Size = new System.Drawing.Size(72, 24);
			this.optZoomOut.TabIndex = 11;
			this.optZoomOut.Text = "Zoom Out";
			this.optZoomOut.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.optZoomOut.Click += new System.EventHandler(this.MixedControls_Click);
			// 
			// optPan
			// 
			this.optPan.Appearance = System.Windows.Forms.Appearance.Button;
			this.optPan.Location = new System.Drawing.Point(296, 8);
			this.optPan.Name = "optPan";
			this.optPan.Size = new System.Drawing.Size(72, 24);
			this.optPan.TabIndex = 13;
			this.optPan.Text = "Pan";
			this.optPan.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.optPan.Click += new System.EventHandler(this.MixedControls_Click);
			// 
			// cmdFullExtent
			// 
			this.cmdFullExtent.Location = new System.Drawing.Point(224, 8);
			this.cmdFullExtent.Name = "cmdFullExtent";
			this.cmdFullExtent.Size = new System.Drawing.Size(72, 24);
			this.cmdFullExtent.TabIndex = 14;
			this.cmdFullExtent.Text = "Full Extent";
			this.cmdFullExtent.Click += new System.EventHandler(this.cmdFullExtent_Click);
			// 
			// grpBox
			// 
			this.grpBox.Controls.Add(this.lblValue);
			this.grpBox.Controls.Add(this.lblOperator);
			this.grpBox.Controls.Add(this.lblField);
			this.grpBox.Controls.Add(this.lblFieldType);
			this.grpBox.Controls.Add(this.lblLayerToQuery);
			this.grpBox.Controls.Add(this.cmdQuery);
			this.grpBox.Controls.Add(this.txtValue);
			this.grpBox.Controls.Add(this.cboLayers);
			this.grpBox.Controls.Add(this.optString);
			this.grpBox.Controls.Add(this.optNumber);
			this.grpBox.Controls.Add(this.cboOperator);
			this.grpBox.Controls.Add(this.cboFields);
			this.grpBox.Location = new System.Drawing.Point(560, 40);
			this.grpBox.Name = "grpBox";
			this.grpBox.Size = new System.Drawing.Size(144, 312);
			this.grpBox.TabIndex = 20;
			this.grpBox.TabStop = false;
			this.grpBox.Text = "Query Criteria";
			// 
			// lblValue
			// 
			this.lblValue.Location = new System.Drawing.Point(8, 224);
			this.lblValue.Name = "lblValue";
			this.lblValue.Size = new System.Drawing.Size(120, 16);
			this.lblValue.TabIndex = 31;
			this.lblValue.Text = "Value:";
			// 
			// lblOperator
			// 
			this.lblOperator.Location = new System.Drawing.Point(8, 176);
			this.lblOperator.Name = "lblOperator";
			this.lblOperator.Size = new System.Drawing.Size(88, 16);
			this.lblOperator.TabIndex = 30;
			this.lblOperator.Text = "Operator:";
			// 
			// lblField
			// 
			this.lblField.Location = new System.Drawing.Point(8, 128);
			this.lblField.Name = "lblField";
			this.lblField.Size = new System.Drawing.Size(96, 16);
			this.lblField.TabIndex = 29;
			this.lblField.Text = "Field to Query:";
			// 
			// lblFieldType
			// 
			this.lblFieldType.Location = new System.Drawing.Point(8, 80);
			this.lblFieldType.Name = "lblFieldType";
			this.lblFieldType.Size = new System.Drawing.Size(104, 16);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天天免费综合色| 日本一区二区三区四区在线视频| 亚洲激情图片一区| 在线看不卡av| www.日韩在线| 国产精品萝li| 欧美亚洲丝袜传媒另类| 日本网站在线观看一区二区三区 | 国产精品二区一区二区aⅴ污介绍| 懂色av一区二区三区蜜臀| 国产精品美女久久久久av爽李琼 | 欧美欧美午夜aⅴ在线观看| 亚洲国产日韩a在线播放| 日韩一区二区视频| 国产91精品免费| 亚洲国产另类av| 久久久精品一品道一区| 风间由美一区二区av101| 亚洲欧美电影一区二区| 91精品久久久久久久久99蜜臂| 国内精品久久久久影院一蜜桃| 亚洲国产激情av| 欧美剧情片在线观看| 国产精品资源在线观看| 一区二区三区中文字幕| 日韩欧美国产wwwww| 白白色 亚洲乱淫| 偷偷要91色婷婷| 国产精品乱码久久久久久| 欧美三级日韩在线| 国产成人精品免费看| 亚洲主播在线观看| 久久久www成人免费毛片麻豆 | 久久99精品久久久| 亚洲男女一区二区三区| 日韩欧美国产成人一区二区| 91亚洲国产成人精品一区二三| 老司机一区二区| 一区二区三区自拍| 久久精品一区二区| 555夜色666亚洲国产免| 91女人视频在线观看| 久久66热re国产| 亚洲福利一区二区三区| 国产精品女同一区二区三区| 日韩一区二区视频| 欧美在线一区二区| 91一区二区三区在线播放| 激情伊人五月天久久综合| 亚洲高清免费视频| 亚洲卡通动漫在线| 国产精品少妇自拍| 精品美女一区二区| 欧美精品久久一区二区三区| 91色porny在线视频| 成人深夜福利app| 国产老妇另类xxxxx| 蜜乳av一区二区| 天天操天天色综合| 午夜一区二区三区在线观看| 亚洲视频你懂的| 国产精品入口麻豆原神| 国产日韩欧美不卡| 久久先锋资源网| 精品欧美久久久| 精品国产在天天线2019| 日韩欧美一区二区不卡| 欧美精品日韩精品| 91麻豆精品国产91久久久久久| 欧美乱熟臀69xxxxxx| 欧美日韩亚洲不卡| 欧美日韩精品福利| 欧美日韩国产经典色站一区二区三区 | 欧美日韩激情一区二区三区| 欧美主播一区二区三区| 91国模大尺度私拍在线视频| 在线看不卡av| 666欧美在线视频| 日韩欧美黄色影院| 精品成人a区在线观看| 欧美成人精品高清在线播放| 精品国产青草久久久久福利| 精品人伦一区二区色婷婷| 久久久久青草大香线综合精品| 久久婷婷综合激情| 国产精品久久久久aaaa| 亚洲男女一区二区三区| 午夜av一区二区| 免费人成在线不卡| 国产在线视视频有精品| 粉嫩蜜臀av国产精品网站| 成a人片国产精品| 一本色道久久加勒比精品| 在线观看成人小视频| 宅男在线国产精品| 久久日一线二线三线suv| 欧美国产禁国产网站cc| 亚洲精品欧美二区三区中文字幕| 亚洲自拍偷拍网站| 免费日本视频一区| 成人av在线网站| 欧美午夜不卡在线观看免费| 日韩免费在线观看| 亚洲国产精品二十页| 一区二区欧美国产| 久久99精品国产麻豆婷婷洗澡| 成人午夜伦理影院| 欧美日韩一区二区欧美激情| 精品日韩一区二区| 亚洲同性同志一二三专区| 图片区小说区国产精品视频| 国产精品一区二区男女羞羞无遮挡| 成人深夜在线观看| 制服丝袜一区二区三区| 国产午夜精品久久久久久免费视| 一区二区三区高清| 国产精品一二三区| 欧美色手机在线观看| 久久精品在线免费观看| 亚洲成av人影院| 成人h动漫精品一区二区| 欧美精品第1页| 中国av一区二区三区| 日日夜夜一区二区| 色婷婷一区二区| 精品国产sm最大网站| 一区二区免费视频| 高清不卡一二三区| 日韩一区二区高清| 亚洲精品v日韩精品| 国产精品一二三区| 日韩三级.com| 亚洲国产视频a| 91网站最新地址| 国产亚洲精品资源在线26u| 亚洲成av人片在www色猫咪| 成人18视频日本| 26uuu另类欧美| 午夜电影一区二区| 一本大道久久a久久综合婷婷| 久久精品亚洲精品国产欧美| 免费高清在线一区| 欧美视频一区在线观看| 国产精品第四页| 成人亚洲一区二区一| 日韩视频一区二区三区在线播放| 亚洲综合色区另类av| 成人av在线看| 国产精品欧美一区喷水| 国产精品中文字幕一区二区三区| 4hu四虎永久在线影院成人| 一区二区三区美女| 91啪九色porn原创视频在线观看| 中文字幕欧美激情一区| 国模套图日韩精品一区二区| 91精品国产免费久久综合| 亚洲一区在线观看视频| 色老头久久综合| 亚洲综合一区二区精品导航| 在线精品视频一区二区三四 | 2023国产精品| 韩国v欧美v亚洲v日本v| 久久综合久久综合久久综合| 激情丁香综合五月| 久久一区二区三区国产精品| 国产在线精品视频| 久久久久久免费| 国产suv一区二区三区88区| 久久天堂av综合合色蜜桃网 | 成人丝袜视频网| 国产精品国产馆在线真实露脸| 国产91精品免费| 国产精品国产三级国产aⅴ无密码| 国产99久久久久久免费看农村| 中文字幕免费一区| 99视频精品全部免费在线| 最新热久久免费视频| 色婷婷激情久久| 视频一区中文字幕国产| 欧美成人免费网站| 成人免费视频免费观看| 自拍偷在线精品自拍偷无码专区| 91麻豆国产香蕉久久精品| 亚洲一区中文在线| 日韩一区二区三区高清免费看看| 久久精品国内一区二区三区| 2020国产成人综合网| av在线不卡网| 亚洲成人动漫一区| 精品区一区二区| av网站免费线看精品| 亚洲国产精品久久久久婷婷884| 在线不卡中文字幕播放| 国产综合久久久久影院| 国产精品三级电影| 欧美天堂一区二区三区| 精品制服美女丁香| 亚洲日本丝袜连裤袜办公室| 91.成人天堂一区| 国产69精品久久久久毛片|