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

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

?? profile.cs

?? 剖面生成器
?? CS
?? 第 1 頁 / 共 3 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using SuperMapLib;
//using DevComponents.DotNetBar;

namespace ProfileCtrl
{
	/// <summary>
	/// 剖面窗體類
	/// </summary>
	public class Profile : System.Windows.Forms.Form
	{
		#region 變量及窗體設計
		private AxSuperMapLib.AxSuperMap superMap;
		private AxSuperTopoLib.AxSuperTopo superTopo;
		private AxSuperMapLib.AxSuperWorkspace superWorkspace;
		private soFillStyleLib objFill;
		private bool isSum = true;				//默認為概化后剖面圖
		private ArrayList arrList;				//存放鉆孔統一編號
		private int zkCount;					//參予生成剖面圖的鉆孔數
		private string caption="剖面圖";		//生成的鉆孔剖面圖名稱	
		private Bore[] bore;					//鉆孔
		private float scaleX,scaleY;//橫、縱比例因子
		private float scaleT = 0.005f;			//文本比例因子
		private float space=500;	
		private ListView listView;
		private System.Windows.Forms.ToolBar toolBar1;
		private System.Windows.Forms.ToolBarButton bNew;
		private System.Windows.Forms.ToolBarButton bSave;
		private System.Windows.Forms.ToolBarButton bClose;
		private System.Windows.Forms.ToolBarButton bProperty;
		private System.Windows.Forms.ToolBarButton bSelect;
		private System.Windows.Forms.ToolBarButton bZoomIn;
		private System.Windows.Forms.ToolBarButton bZoomOut;
		private System.Windows.Forms.ToolBarButton bFree;
		private System.Windows.Forms.ToolBarButton bPan;
		private System.Windows.Forms.ToolBarButton bSmoothA;
		private System.Windows.Forms.ToolBarButton bTopo;
		private System.Windows.Forms.ToolBarButton bRegionJoin;
		private System.Windows.Forms.ToolBarButton bSmoothC;
		private System.Windows.Forms.ToolBarButton bLegend;
		private System.Windows.Forms.ToolBarButton bEditLine;
		private System.Windows.Forms.ToolBarButton bDel;
		private System.Windows.Forms.ToolBarButton bCurver;
		private System.Windows.Forms.ToolBarButton bPolyLine;
		private System.Windows.Forms.ToolBarButton bEditV;
		private System.Windows.Forms.ToolBarButton bAddV;
		private System.Windows.Forms.ToolBarButton bLineJoin;
		private System.Windows.Forms.StatusBar statusBar1;
		private System.Windows.Forms.StatusBarPanel statusBarPanel1;
		private System.Windows.Forms.ToolBarButton bAll;
		private System.Windows.Forms.ImageList imageList;
		private System.ComponentModel.IContainer components;

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

			listView = new ListView();
			listView.Dock = DockStyle.Fill;
			listView.View = View.Details;
			listView.GridLines = true;
			listView.Columns.Add("名稱",80,HorizontalAlignment.Left);
			listView.Columns.Add("屬性值",100,HorizontalAlignment.Left);
//			((DockContainerItem)barManager.Bars["dockProperty"].Items["barProperty"]).Control = listView;
		}

		/// <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(Profile));
			this.superMap = new AxSuperMapLib.AxSuperMap();
			this.superTopo = new AxSuperTopoLib.AxSuperTopo();
			this.toolBar1 = new System.Windows.Forms.ToolBar();
			this.bNew = new System.Windows.Forms.ToolBarButton();
			this.bSave = new System.Windows.Forms.ToolBarButton();
			this.bClose = new System.Windows.Forms.ToolBarButton();
			this.bProperty = new System.Windows.Forms.ToolBarButton();
			this.bSelect = new System.Windows.Forms.ToolBarButton();
			this.bZoomIn = new System.Windows.Forms.ToolBarButton();
			this.bZoomOut = new System.Windows.Forms.ToolBarButton();
			this.bFree = new System.Windows.Forms.ToolBarButton();
			this.bAll = new System.Windows.Forms.ToolBarButton();
			this.bPan = new System.Windows.Forms.ToolBarButton();
			this.bSmoothA = new System.Windows.Forms.ToolBarButton();
			this.bTopo = new System.Windows.Forms.ToolBarButton();
			this.bRegionJoin = new System.Windows.Forms.ToolBarButton();
			this.bSmoothC = new System.Windows.Forms.ToolBarButton();
			this.bLegend = new System.Windows.Forms.ToolBarButton();
			this.bEditLine = new System.Windows.Forms.ToolBarButton();
			this.bDel = new System.Windows.Forms.ToolBarButton();
			this.bCurver = new System.Windows.Forms.ToolBarButton();
			this.bPolyLine = new System.Windows.Forms.ToolBarButton();
			this.bEditV = new System.Windows.Forms.ToolBarButton();
			this.bAddV = new System.Windows.Forms.ToolBarButton();
			this.bLineJoin = new System.Windows.Forms.ToolBarButton();
			this.imageList = new System.Windows.Forms.ImageList(this.components);
			this.statusBar1 = new System.Windows.Forms.StatusBar();
			this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
			((System.ComponentModel.ISupportInitialize)(this.superMap)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.superTopo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
			this.SuspendLayout();
			// 
			// superMap
			// 
			this.superMap.Enabled = true;
			this.superMap.Location = new System.Drawing.Point(8, 64);
			this.superMap.Name = "superMap";
			this.superMap.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("superMap.OcxState")));
			this.superMap.Size = new System.Drawing.Size(632, 224);
			this.superMap.TabIndex = 2;
			this.superMap.GeometrySelected += new AxSuperMapLib._DSuperMapEvents_GeometrySelectedEventHandler(this.superMap_GeometrySelected);
			this.superMap.DblClick += new System.EventHandler(this.superMap_DblClick);
			this.superMap.MouseUpEvent += new AxSuperMapLib._DSuperMapEvents_MouseUpEventHandler(this.superMap_MouseUpEvent);
			// 
			// superTopo
			// 
			this.superTopo.Enabled = true;
			this.superTopo.Location = new System.Drawing.Point(224, 152);
			this.superTopo.Name = "superTopo";
			this.superTopo.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("superTopo.OcxState")));
			this.superTopo.Size = new System.Drawing.Size(32, 32);
			this.superTopo.TabIndex = 3;
			// 
			// toolBar1
			// 
			this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
																						this.bNew,
																						this.bSave,
																						this.bClose,
																						this.bProperty,
																						this.bSelect,
																						this.bZoomIn,
																						this.bZoomOut,
																						this.bFree,
																						this.bAll,
																						this.bPan,
																						this.bSmoothA,
																						this.bTopo,
																						this.bRegionJoin,
																						this.bSmoothC,
																						this.bLegend,
																						this.bEditLine,
																						this.bDel,
																						this.bCurver,
																						this.bPolyLine,
																						this.bEditV,
																						this.bAddV,
																						this.bLineJoin});
			this.toolBar1.ButtonSize = new System.Drawing.Size(28, 25);
			this.toolBar1.DropDownArrows = true;
			this.toolBar1.ImageList = this.imageList;
			this.toolBar1.Location = new System.Drawing.Point(0, 0);
			this.toolBar1.Name = "toolBar1";
			this.toolBar1.ShowToolTips = true;
			this.toolBar1.Size = new System.Drawing.Size(688, 31);
			this.toolBar1.TabIndex = 4;
			this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
			this.toolBar1.MouseEnter += new System.EventHandler(this.toolBar1_MouseEnter);
			// 
			// bNew
			// 
			this.bNew.ImageIndex = 0;
			this.bNew.Text = "bNew";
			this.bNew.ToolTipText = "新建";
			// 
			// bSave
			// 
			this.bSave.ImageIndex = 1;
			this.bSave.Text = "bSave";
			this.bSave.ToolTipText = "保存";
			// 
			// bClose
			// 
			this.bClose.ImageIndex = 2;
			this.bClose.Text = "bClose";
			this.bClose.ToolTipText = "關閉";
			// 
			// bProperty
			// 
			this.bProperty.ImageIndex = 3;
			this.bProperty.Text = "bProperty";
			this.bProperty.ToolTipText = "查看屬性";
			// 
			// bSelect
			// 
			this.bSelect.ImageIndex = 4;
			this.bSelect.Text = "bSelect";
			this.bSelect.ToolTipText = "選擇";
			// 
			// bZoomIn
			// 
			this.bZoomIn.ImageIndex = 5;
			this.bZoomIn.Text = "bZoomIn";
			this.bZoomIn.ToolTipText = "放大";
			// 
			// bZoomOut
			// 
			this.bZoomOut.ImageIndex = 6;
			this.bZoomOut.Text = "bZoomOut";
			this.bZoomOut.ToolTipText = "縮小";
			// 
			// bFree
			// 
			this.bFree.ImageIndex = 7;
			this.bFree.Text = "bFree";
			this.bFree.ToolTipText = "自由縮放";
			// 
			// bAll
			// 
			this.bAll.ImageIndex = 9;
			this.bAll.Text = "bAll";
			this.bAll.ToolTipText = "全幅顯示";
			// 
			// bPan
			// 
			this.bPan.ImageIndex = 8;
			this.bPan.Text = "bPan";
			this.bPan.ToolTipText = "漫游";
			// 
			// bSmoothA
			// 
			this.bSmoothA.ImageIndex = 18;
			this.bSmoothA.Text = "bSmoothA";
			this.bSmoothA.ToolTipText = "平滑";
			// 
			// bTopo
			// 
			this.bTopo.ImageIndex = 20;
			this.bTopo.Text = "bTopo";
			this.bTopo.ToolTipText = "拓撲";
			// 
			// bRegionJoin
			// 
			this.bRegionJoin.ImageIndex = 17;
			this.bRegionJoin.Text = "bRegionJoin";
			this.bRegionJoin.ToolTipText = "合并區域";
			// 
			// bSmoothC
			// 
			this.bSmoothC.ImageIndex = 21;
			this.bSmoothC.Text = "bSmoothC";
			this.bSmoothC.ToolTipText = "平滑";
			// 
			// bLegend
			// 
			this.bLegend.ImageIndex = 19;
			this.bLegend.Text = "bLegend";
			this.bLegend.ToolTipText = "圖例";
			// 
			// bEditLine
			// 
			this.bEditLine.ImageIndex = 16;
			this.bEditLine.Text = "bEditLine";
			this.bEditLine.ToolTipText = "置線可編輯";
			// 
			// bDel
			// 
			this.bDel.ImageIndex = 15;
			this.bDel.Text = "bDel";
			this.bDel.ToolTipText = "刪除";
			// 
			// bCurver
			// 
			this.bCurver.ImageIndex = 11;
			this.bCurver.Text = "bCurver";
			this.bCurver.ToolTipText = "畫曲線";
			// 
			// bPolyLine
			// 
			this.bPolyLine.ImageIndex = 11;
			this.bPolyLine.Text = "bPolyLine";
			this.bPolyLine.ToolTipText = "畫折線";
			// 
			// bEditV
			// 
			this.bEditV.ImageIndex = 13;
			this.bEditV.Text = "bEditV";
			this.bEditV.ToolTipText = "編輯節點";
			// 
			// bAddV
			// 
			this.bAddV.ImageIndex = 14;
			this.bAddV.Text = "bAddV";
			this.bAddV.ToolTipText = "增加節點";
			// 
			// bLineJoin
			// 
			this.bLineJoin.ImageIndex = 22;
			this.bLineJoin.Text = "bLineJoin";
			this.bLineJoin.ToolTipText = "合并線";
			// 
			// imageList
			// 
			this.imageList.ImageSize = new System.Drawing.Size(17, 17);
			this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
			this.imageList.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// statusBar1
			// 
			this.statusBar1.Location = new System.Drawing.Point(0, 309);
			this.statusBar1.Name = "statusBar1";
			this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
																						  this.statusBarPanel1});
			this.statusBar1.Size = new System.Drawing.Size(688, 32);
			this.statusBar1.TabIndex = 5;
			this.statusBar1.Text = "statusBar1";
			// 
			// statusBarPanel1
			// 
			this.statusBarPanel1.Text = "statusBarPanel1";
			// 
			// Profile
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(688, 341);
			this.Controls.Add(this.statusBar1);
			this.Controls.Add(this.toolBar1);
			this.Controls.Add(this.superTopo);
			this.Controls.Add(this.superMap);
			this.Name = "Profile";
			this.Text = "Profile";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.Profile_Closing);
			((System.ComponentModel.ISupportInitialize)(this.superMap)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.superTopo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
			this.ResumeLayout(false);

		}
		#endregion	

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人国产精品免费观看动漫| 成人综合婷婷国产精品久久蜜臀| 91国模大尺度私拍在线视频| 欧美大片一区二区| 天天爽夜夜爽夜夜爽精品视频| 99精品视频在线观看免费| 久久青草欧美一区二区三区| 精品一区二区三区免费观看| 欧美精品 日韩| 亚洲一区二区欧美日韩| 欧美在线观看视频一区二区| 亚洲免费三区一区二区| 99在线精品一区二区三区| 国产精品久久国产精麻豆99网站| 国产精品亚洲成人| 久久午夜羞羞影院免费观看| 国产一区久久久| 精品国产三级电影在线观看| 日本欧美一区二区| 精品免费国产二区三区| 另类人妖一区二区av| 欧美一区二区三区喷汁尤物| 蜜臀99久久精品久久久久久软件| 91精品国产综合久久久久| 亚洲成人福利片| 欧美一卡二卡三卡| 另类小说综合欧美亚洲| 精品国产123| 床上的激情91.| 一区在线观看视频| 色悠久久久久综合欧美99| 亚洲一区二区中文在线| 欧美年轻男男videosbes| 亚洲h在线观看| 亚洲精品一线二线三线| 国产精品夜夜嗨| 国产日韩影视精品| 91麻豆6部合集magnet| 一区二区三区色| 色综合久久中文综合久久牛| 亚洲成av人综合在线观看| 欧美美女bb生活片| 肉色丝袜一区二区| xf在线a精品一区二区视频网站| 国产一区二区三区四区五区入口| 色婷婷久久综合| 午夜精品久久久久| 日韩一区二区三区精品视频 | 日韩一级二级三级| 视频一区中文字幕国产| 久久久久9999亚洲精品| av午夜一区麻豆| 亚洲六月丁香色婷婷综合久久 | 欧美日韩国产综合视频在线观看| 免费成人av资源网| 国产亚洲欧洲一区高清在线观看| 丁香另类激情小说| 午夜一区二区三区在线观看| 91麻豆精品国产无毒不卡在线观看 | 国产精品每日更新在线播放网址| 91成人免费在线| 日韩精品视频网| 国产亚洲综合av| 精品1区2区3区| 日本不卡一区二区三区高清视频| 久久综合精品国产一区二区三区 | 色悠久久久久综合欧美99| 蜜桃av一区二区在线观看| 国产日产亚洲精品系列| 成人高清av在线| 五月激情六月综合| 国产拍揄自揄精品视频麻豆| 日本韩国欧美三级| 久久国产精品露脸对白| 国产精品成人网| 欧美精品在线一区二区三区| 国产v日产∨综合v精品视频| 一区二区三区**美女毛片| 久久精品视频在线免费观看| 欧美亚洲综合一区| 日韩电影在线一区二区三区| 亚洲日本va在线观看| 欧美一区二区人人喊爽| jiyouzz国产精品久久| 日韩国产精品久久久久久亚洲| 久久―日本道色综合久久| 欧美人妇做爰xxxⅹ性高电影| 豆国产96在线|亚洲| 午夜精品福利一区二区三区av| 国产精品久久久久影院亚瑟| 宅男噜噜噜66一区二区66| 99精品黄色片免费大全| 国产精品91一区二区| 亚洲一二三四在线观看| 国产日韩精品一区二区浪潮av| 欧美一区二区网站| 91尤物视频在线观看| 久久精品国产精品亚洲综合| 亚洲成a人v欧美综合天堂| 国产精品久久免费看| 日韩欧美在线观看一区二区三区| 欧美性生活大片视频| 成人影视亚洲图片在线| 免费观看日韩av| 亚洲成av人综合在线观看| 中文字幕一区日韩精品欧美| 久久精品一二三| 3d动漫精品啪啪1区2区免费| 91色九色蝌蚪| 97精品国产露脸对白| 国产一区二区美女| 午夜亚洲国产au精品一区二区| 亚洲男人天堂一区| 国产区在线观看成人精品 | 成人av第一页| 极品少妇xxxx精品少妇| 日韩成人免费电影| 亚洲精品成人悠悠色影视| 国产精品久久久久久久久久免费看| 精品国产乱码久久久久久久| 欧美日韩精品一区二区| 国产91精品久久久久久久网曝门| 狠狠久久亚洲欧美| 日本三级亚洲精品| 一区二区三区久久| 亚洲欧洲综合另类在线| 国产精品三级av| 国产精品国模大尺度视频| 久久久久国色av免费看影院| 精品理论电影在线| 精品福利av导航| 日韩精品一区二区三区三区免费| 在线不卡中文字幕播放| 欧美日韩亚洲综合在线| 91黄色激情网站| 欧美日韩一区二区在线观看视频| 色婷婷综合五月| 色婷婷激情一区二区三区| 色嗨嗨av一区二区三区| 91原创在线视频| 成人黄色电影在线| 色综合久久久久网| 91色婷婷久久久久合中文| 欧美在线影院一区二区| 欧美综合一区二区| 欧美专区日韩专区| 91精品综合久久久久久| 欧美乱妇一区二区三区不卡视频 | 成人高清av在线| 成人午夜免费av| 不卡电影一区二区三区| 色狠狠桃花综合| 欧美三区在线观看| 欧美吻胸吃奶大尺度电影| 欧美系列在线观看| 在线播放日韩导航| 欧美一区二区久久| 精品国产人成亚洲区| 久久精品人人做人人爽人人| 久久久亚洲精品石原莉奈| 精品国精品国产尤物美女| 久久久久久久久蜜桃| 国模无码大尺度一区二区三区| 欧美日本国产视频| 亚洲一区二区三区中文字幕在线| 一卡二卡欧美日韩| 日韩精品五月天| 国产精品综合一区二区三区| 国产一区二区0| 狠狠色丁香婷综合久久| 国产乱码精品一区二区三区忘忧草 | 99国产精品久| 一本大道久久a久久精二百| 51午夜精品国产| 日韩免费电影网站| 26uuu精品一区二区在线观看| 欧美国产一区在线| 一区二区三区四区激情| 美女网站在线免费欧美精品| 国产在线精品一区二区| 波多野结衣中文字幕一区| 东方aⅴ免费观看久久av| 在线观看一区二区精品视频| 欧美一区二区啪啪| 国产精品女主播av| 亚洲永久免费视频| 日日摸夜夜添夜夜添亚洲女人| 视频在线观看91| 成人国产视频在线观看| 精品视频一区二区三区免费| 欧美tickling挠脚心丨vk| 久久久久久久久一| 亚洲成人一区在线| 国产在线播精品第三| 欧美三级资源在线| 欧美激情一区二区三区在线| 亚洲成人精品一区| 成人一级片网址| 99国产精品视频免费观看| 精品国精品自拍自在线|