diff --git a/Cyberpipe.suo b/Cyberpipe.suo
index ab59cf3..2ccc843 100644
--- a/Cyberpipe.suo
+++ b/Cyberpipe.suo
Binary files differ
diff --git a/Cyberpipe.suo b/Cyberpipe.suo
index ab59cf3..2ccc843 100644
--- a/Cyberpipe.suo
+++ b/Cyberpipe.suo
Binary files differ
diff --git a/MainFrm.cs b/MainFrm.cs
index 79f72dd..732a3ac 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -1574,11 +1574,13 @@
GSOLayer gsoLayer = e.Node.Tag as GSOLayer;
if (gsoLayer == null || gsoLayer.Caption.Equals(Utility.roadLayerName)) return;
- if (e.Node.Parent.Text.Equals("临时图层") || e.Node.Parent.Text.Equals("我的地标"))
+ if (e.Node.Parent.Text.Equals("临时图层"))//|| e.Node.Parent.Text.Equals("我的地标")
{
//临时图层下的子节点应该展示的
contextMenuStripDeleteLayerNode.Show(layerTree, e.X, e.Y);
contextMenuStripDeleteLayerNode.Tag = e.Node;
+ GSOLayer layer = e.Node.Tag as GSOLayer;
+ 可编辑ToolStripMenuItem.Checked = layer.Editable;//可编辑状态
}
else
{
@@ -5849,13 +5851,18 @@
private void NetworkTraceUpDown(Boolean bTraceUp)
{
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer; ;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
-
NetworkAnalysisTool.TraceUpDownAnalysis(bTraceUp,
selLineFeature, selLayer);
}
@@ -5879,16 +5886,24 @@
///
private void 关阀分析ToolStripMenuItem_Click(object sender, EventArgs e)
{
- if (globeControl1.Globe.SelObjectCount < 1)
- {
- MessageBox.Show("请选中至少一根管线!!");
- 流向分析ToolStripMenuItem.Checked = false;
- return;
- }
+// if (globeControl1.Globe.SelObjectCount < 1)
+// {
+// MessageBox.Show("请选中至少一根管线!!");
+// 流向分析ToolStripMenuItem.Checked = false;
+// return;
+// }
GSOLayer resLayer = null;
GSOFeature resFeature = null;
- globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
-
+
+ if (globeControl1.Globe.SelObjectCount < 1)
+ {
+ resLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ resFeature = resLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
+ }
+ else
+ {
+ globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
+ }
String pipeLayerName = resLayer.Caption;
String pipeLayerNamePrefix = pipeLayerName.Substring(0, pipeLayerName.IndexOf("管线"));
GSOLayer valveLayer = globeControl1.Globe.Layers[pipeLayerNamePrefix + "阀门"];
@@ -5947,12 +5962,18 @@
NetworkTraceUpDown(true); //上游追踪:
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
NetworkAnalysisTool.ExplodeAnalysis(globeControl1, selLineFeature, selLayer);
diff --git a/Cyberpipe.suo b/Cyberpipe.suo
index ab59cf3..2ccc843 100644
--- a/Cyberpipe.suo
+++ b/Cyberpipe.suo
Binary files differ
diff --git a/MainFrm.cs b/MainFrm.cs
index 79f72dd..732a3ac 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -1574,11 +1574,13 @@
GSOLayer gsoLayer = e.Node.Tag as GSOLayer;
if (gsoLayer == null || gsoLayer.Caption.Equals(Utility.roadLayerName)) return;
- if (e.Node.Parent.Text.Equals("临时图层") || e.Node.Parent.Text.Equals("我的地标"))
+ if (e.Node.Parent.Text.Equals("临时图层"))//|| e.Node.Parent.Text.Equals("我的地标")
{
//临时图层下的子节点应该展示的
contextMenuStripDeleteLayerNode.Show(layerTree, e.X, e.Y);
contextMenuStripDeleteLayerNode.Tag = e.Node;
+ GSOLayer layer = e.Node.Tag as GSOLayer;
+ 可编辑ToolStripMenuItem.Checked = layer.Editable;//可编辑状态
}
else
{
@@ -5849,13 +5851,18 @@
private void NetworkTraceUpDown(Boolean bTraceUp)
{
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer; ;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
-
NetworkAnalysisTool.TraceUpDownAnalysis(bTraceUp,
selLineFeature, selLayer);
}
@@ -5879,16 +5886,24 @@
///
private void 关阀分析ToolStripMenuItem_Click(object sender, EventArgs e)
{
- if (globeControl1.Globe.SelObjectCount < 1)
- {
- MessageBox.Show("请选中至少一根管线!!");
- 流向分析ToolStripMenuItem.Checked = false;
- return;
- }
+// if (globeControl1.Globe.SelObjectCount < 1)
+// {
+// MessageBox.Show("请选中至少一根管线!!");
+// 流向分析ToolStripMenuItem.Checked = false;
+// return;
+// }
GSOLayer resLayer = null;
GSOFeature resFeature = null;
- globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
-
+
+ if (globeControl1.Globe.SelObjectCount < 1)
+ {
+ resLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ resFeature = resLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
+ }
+ else
+ {
+ globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
+ }
String pipeLayerName = resLayer.Caption;
String pipeLayerNamePrefix = pipeLayerName.Substring(0, pipeLayerName.IndexOf("管线"));
GSOLayer valveLayer = globeControl1.Globe.Layers[pipeLayerNamePrefix + "阀门"];
@@ -5947,12 +5962,18 @@
NetworkTraceUpDown(true); //上游追踪:
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
NetworkAnalysisTool.ExplodeAnalysis(globeControl1, selLineFeature, selLayer);
diff --git a/MainFrm.designer.cs b/MainFrm.designer.cs
index f473335..fa30208 100644
--- a/MainFrm.designer.cs
+++ b/MainFrm.designer.cs
@@ -90,6 +90,7 @@
this.sideBar1 = new DevComponents.DotNetBar.SideBar();
this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
this.layerSensorTree = new System.Windows.Forms.TreeView();
+ this.layerTree = new Cyberpipe.MyTreeView();
this.sideBarPanelItem3 = new DevComponents.DotNetBar.SideBarPanelItem();
this.controlContainerItem3 = new DevComponents.DotNetBar.ControlContainerItem();
this.sideBarPanelItem4 = new DevComponents.DotNetBar.SideBarPanelItem();
@@ -244,6 +245,30 @@
this.保存ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.定位ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
+ this.ribbonPanel12 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar18 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem133 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem132 = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem127 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem128 = new DevComponents.DotNetBar.ButtonItem();
+ this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
+ this.buttonItem134 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem130 = new DevComponents.DotNetBar.ButtonItem();
+ this.btn_check_history = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar21 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem87 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem88 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem91 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
+ this.btnlegendSet = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem89 = new DevComponents.DotNetBar.ButtonItem();
+ this.btnOutputJPG = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
+ this.btn_document_info = new DevComponents.DotNetBar.ButtonItem();
this.ribbonPanel15 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar20 = new DevComponents.DotNetBar.RibbonBar();
this.buttonItemSH = new DevComponents.DotNetBar.ButtonItem();
@@ -299,12 +324,6 @@
this.buttonItemXT4 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItemXT4_1 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItemXT4_2 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItemHX1 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItemHX2 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItemDCTP = new DevComponents.DotNetBar.ButtonItem();
- this.sliderItem3 = new DevComponents.DotNetBar.SliderItem();
this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
this.btn_user_info = new DevComponents.DotNetBar.ButtonItem();
@@ -326,30 +345,6 @@
this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel12 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar18 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem133 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem132 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem127 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem128 = new DevComponents.DotNetBar.ButtonItem();
- this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
- this.buttonItem134 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem130 = new DevComponents.DotNetBar.ButtonItem();
- this.btn_check_history = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
- this.btn_document_info = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar21 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem87 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem88 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem91 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
- this.btnlegendSet = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem89 = new DevComponents.DotNetBar.ButtonItem();
- this.btnOutputJPG = new DevComponents.DotNetBar.ButtonItem();
this.ribbonPanel6 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar6 = new DevComponents.DotNetBar.RibbonBar();
this.buttonItemSPSZ = new DevComponents.DotNetBar.ButtonItem();
@@ -357,6 +352,12 @@
this.buttonItemLocation = new DevComponents.DotNetBar.ButtonItem();
this.sliderItem2 = new DevComponents.DotNetBar.SliderItem();
this.buttonItemGBJC = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItemHX1 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItemHX2 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItemDCTP = new DevComponents.DotNetBar.ButtonItem();
+ this.sliderItem3 = new DevComponents.DotNetBar.SliderItem();
this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
this.ribbonTabItem11 = new DevComponents.DotNetBar.RibbonTabItem();
this.ribbonTabItem6 = new DevComponents.DotNetBar.RibbonTabItem();
@@ -518,7 +519,6 @@
this.labelX17 = new DevComponents.DotNetBar.LabelX();
this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.layerTree = new Cyberpipe.MyTreeView();
this.statusStrip1.SuspendLayout();
this.sideBar1.SuspendLayout();
this.panelEx3.SuspendLayout();
@@ -529,15 +529,15 @@
this.contextMenuStrip3.SuspendLayout();
this.contextMenuStripDeleteLayerNode.SuspendLayout();
this.ribbonControl1.SuspendLayout();
+ this.ribbonPanel12.SuspendLayout();
+ this.ribbonPanel1.SuspendLayout();
+ this.ribbonPanel4.SuspendLayout();
this.ribbonPanel15.SuspendLayout();
- this.ribbonPanel5.SuspendLayout();
this.ribbonPanel2.SuspendLayout();
this.ribbonPanel3.SuspendLayout();
this.ribbonPanel7.SuspendLayout();
- this.ribbonPanel12.SuspendLayout();
- this.ribbonPanel4.SuspendLayout();
- this.ribbonPanel1.SuspendLayout();
this.ribbonPanel6.SuspendLayout();
+ this.ribbonPanel5.SuspendLayout();
this.panelOfTable.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
this.statusStrip2.SuspendLayout();
@@ -957,6 +957,18 @@
this.layerSensorTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerMarkerTree_NodeMouseClick);
this.layerSensorTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
//
+ // layerTree
+ //
+ this.layerTree.CheckBoxes = true;
+ this.layerTree.ItemHeight = 18;
+ this.layerTree.Location = new System.Drawing.Point(30, 78);
+ this.layerTree.Name = "layerTree";
+ this.layerTree.Size = new System.Drawing.Size(121, 97);
+ this.layerTree.TabIndex = 1;
+ this.layerTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.layerTree_AfterCheck);
+ this.layerTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseClick);
+ this.layerTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
+ //
// sideBarPanelItem3
//
this.sideBarPanelItem3.FontBold = true;
@@ -1131,7 +1143,7 @@
this.区域分析ToolStripMenuItem,
this.清除分析ToolStripMenuItem});
this.toolRightMenu.Name = "toolRightMenu";
- this.toolRightMenu.Size = new System.Drawing.Size(149, 290);
+ this.toolRightMenu.Size = new System.Drawing.Size(153, 312);
//
// 量算ToolStripMenuItem
//
@@ -1144,7 +1156,7 @@
this.水平面积ToolStripMenuItem1,
this.地表面积ToolStripMenuItem1});
this.量算ToolStripMenuItem.Name = "量算ToolStripMenuItem";
- this.量算ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.量算ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.量算ToolStripMenuItem.Text = "量算";
//
// 水平距离ToolStripMenuItem1
@@ -1207,7 +1219,7 @@
this.前进ToolStripMenuItem,
this.后退ToolStripMenuItem});
this.编辑ToolStripMenuItem.Name = "编辑ToolStripMenuItem";
- this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.编辑ToolStripMenuItem.Text = "编辑";
//
// 平移对象ToolStripMenuItem
@@ -1283,7 +1295,7 @@
this.绕中心点飞行ToolStripMenuItem,
this.绕眼睛飞行ToolStripMenuItem});
this.飞行ToolStripMenuItem.Name = "飞行ToolStripMenuItem";
- this.飞行ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.飞行ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.飞行ToolStripMenuItem.Text = "飞行";
//
// 自定义飞行ToolStripMenuItem
@@ -1328,7 +1340,7 @@
this.属性标注ToolStripMenuItem,
this.标注管理ToolStripMenuItem});
this.标注ToolStripMenuItem.Name = "标注ToolStripMenuItem";
- this.标注ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.标注ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.标注ToolStripMenuItem.Text = "标注";
//
// 标高标注ToolStripMenuItem
@@ -1415,7 +1427,7 @@
this.关联查询ToolStripMenuItem,
this.关键字查询ToolStripMenuItem});
this.查询ToolStripMenuItem.Name = "查询ToolStripMenuItem";
- this.查询ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.查询ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.查询ToolStripMenuItem.Text = "查询";
//
// 空间查询ToolStripMenuItem
@@ -1501,7 +1513,7 @@
this.附属物分类统计ToolStripMenuItem,
this.标识器分类统计ToolStripMenuItem});
this.全区域统计ToolStripMenuItem.Name = "全区域统计ToolStripMenuItem";
- this.全区域统计ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.全区域统计ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.全区域统计ToolStripMenuItem.Text = "全区域统计";
//
// 管线长度统计ToolStripMenuItem
@@ -1580,7 +1592,7 @@
this.附属物分类统计ToolStripMenuItem1,
this.标识器分类统计ToolStripMenuItem1});
this.绘制区域统计ToolStripMenuItem.Name = "绘制区域统计ToolStripMenuItem";
- this.绘制区域统计ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.绘制区域统计ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.绘制区域统计ToolStripMenuItem.Text = "绘制区域统计";
//
// 管线长度统计ToolStripMenuItem1
@@ -1654,7 +1666,7 @@
this.道路断面分析ToolStripMenuItem,
this.基线剖面分析ToolStripMenuItem});
this.断面分析ToolStripMenuItem.Name = "断面分析ToolStripMenuItem";
- this.断面分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.断面分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.断面分析ToolStripMenuItem.Text = "断面分析";
//
// 横断面分析ToolStripMenuItem
@@ -1696,55 +1708,55 @@
this.连通分析ToolStripMenuItem,
this.爆管分析ToolStripMenuItem});
this.拓扑分析ToolStripMenuItem.Name = "拓扑分析ToolStripMenuItem";
- this.拓扑分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.拓扑分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.拓扑分析ToolStripMenuItem.Text = "拓扑分析";
//
// 创建拓扑ToolStripMenuItem
//
this.创建拓扑ToolStripMenuItem.Name = "创建拓扑ToolStripMenuItem";
- this.创建拓扑ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.创建拓扑ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.创建拓扑ToolStripMenuItem.Text = "创建拓扑";
this.创建拓扑ToolStripMenuItem.Click += new System.EventHandler(this.创建拓扑ToolStripMenuItem_Click);
//
// 上游分析ToolStripMenuItem
//
this.上游分析ToolStripMenuItem.Name = "上游分析ToolStripMenuItem";
- this.上游分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.上游分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.上游分析ToolStripMenuItem.Text = "上游分析";
this.上游分析ToolStripMenuItem.Click += new System.EventHandler(this.上游分析ToolStripMenuItem_Click);
//
// 下游分析ToolStripMenuItem
//
this.下游分析ToolStripMenuItem.Name = "下游分析ToolStripMenuItem";
- this.下游分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.下游分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.下游分析ToolStripMenuItem.Text = "下游分析";
this.下游分析ToolStripMenuItem.Click += new System.EventHandler(this.下游分析ToolStripMenuItem_Click);
//
// 流向分析ToolStripMenuItem
//
this.流向分析ToolStripMenuItem.Name = "流向分析ToolStripMenuItem";
- this.流向分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.流向分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.流向分析ToolStripMenuItem.Text = "流向分析";
this.流向分析ToolStripMenuItem.Click += new System.EventHandler(this.流向分析ToolStripMenuItem_Click);
//
// 关阀分析ToolStripMenuItem
//
this.关阀分析ToolStripMenuItem.Name = "关阀分析ToolStripMenuItem";
- this.关阀分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.关阀分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.关阀分析ToolStripMenuItem.Text = "关阀分析";
this.关阀分析ToolStripMenuItem.Click += new System.EventHandler(this.关阀分析ToolStripMenuItem_Click);
//
// 连通分析ToolStripMenuItem
//
this.连通分析ToolStripMenuItem.Name = "连通分析ToolStripMenuItem";
- this.连通分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.连通分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.连通分析ToolStripMenuItem.Text = "连通分析";
this.连通分析ToolStripMenuItem.Click += new System.EventHandler(this.连通分析ToolStripMenuItem_Click);
//
// 爆管分析ToolStripMenuItem
//
this.爆管分析ToolStripMenuItem.Name = "爆管分析ToolStripMenuItem";
- this.爆管分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.爆管分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.爆管分析ToolStripMenuItem.Text = "爆管分析";
this.爆管分析ToolStripMenuItem.Click += new System.EventHandler(this.爆管分析ToolStripMenuItem_Click);
//
@@ -1758,7 +1770,7 @@
this.隐藏隧道ToolStripMenuItem,
this.删除隧道ToolStripMenuItem});
this.开挖分析ToolStripMenuItem.Name = "开挖分析ToolStripMenuItem";
- this.开挖分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.开挖分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.开挖分析ToolStripMenuItem.Text = "开挖分析";
//
// 多边形开挖ToolStripMenuItem
@@ -1810,7 +1822,7 @@
this.可视域分析ToolStripMenuItem,
this.可视包络分析ToolStripMenuItem});
this.视域分析ToolStripMenuItem.Name = "视域分析ToolStripMenuItem";
- this.视域分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.视域分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.视域分析ToolStripMenuItem.Text = "视域分析";
//
// 通视分析ToolStripMenuItem
@@ -1841,7 +1853,7 @@
this.缓冲区分析ToolStripMenuItem,
this.无源淹没分析ToolStripMenuItem});
this.区域分析ToolStripMenuItem.Name = "区域分析ToolStripMenuItem";
- this.区域分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.区域分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.区域分析ToolStripMenuItem.Text = "区域分析";
//
// 附属物分析ToolStripMenuItem
@@ -1868,7 +1880,7 @@
// 清除分析ToolStripMenuItem
//
this.清除分析ToolStripMenuItem.Name = "清除分析ToolStripMenuItem";
- this.清除分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.清除分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.清除分析ToolStripMenuItem.Text = "清除分析";
this.清除分析ToolStripMenuItem.Click += new System.EventHandler(this.buttonItemClear_Click);
//
@@ -2201,6 +2213,391 @@
this.ribbonControl1.Text = "ribbonControl1";
this.ribbonControl1.UseCustomizeDialog = false;
//
+ // ribbonPanel12
+ //
+ this.ribbonPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel12.Controls.Add(this.ribbonBar18);
+ this.ribbonPanel12.Controls.Add(this.ribbonBar13);
+ this.ribbonPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel12.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel12.Name = "ribbonPanel12";
+ this.ribbonPanel12.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel12.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel12.Style.Class = "";
+ this.ribbonPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel12.StyleMouseDown.Class = "";
+ this.ribbonPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel12.StyleMouseOver.Class = "";
+ this.ribbonPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel12.TabIndex = 34;
+ //
+ // ribbonBar18
+ //
+ this.ribbonBar18.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar18.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar18.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar18.BackgroundStyle.Class = "";
+ this.ribbonBar18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar18.ContainerControlProcessDialogKey = true;
+ this.ribbonBar18.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar18.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem133,
+ this.buttonItem132});
+ this.ribbonBar18.Location = new System.Drawing.Point(508, 0);
+ this.ribbonBar18.Name = "ribbonBar18";
+ this.ribbonBar18.Size = new System.Drawing.Size(75, 59);
+ this.ribbonBar18.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar18.TabIndex = 1;
+ //
+ //
+ //
+ this.ribbonBar18.TitleStyle.Class = "";
+ this.ribbonBar18.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar18.TitleStyleMouseOver.Class = "";
+ this.ribbonBar18.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar18.TitleVisible = false;
+ //
+ // buttonItem133
+ //
+ this.buttonItem133.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem133.Image")));
+ this.buttonItem133.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem133.Name = "buttonItem133";
+ this.buttonItem133.SubItemsExpandWidth = 14;
+ this.buttonItem133.Text = "审核入库";
+ this.buttonItem133.Click += new System.EventHandler(this.buttonItem133_Click_1);
+ //
+ // buttonItem132
+ //
+ this.buttonItem132.Name = "buttonItem132";
+ //
+ // ribbonBar13
+ //
+ this.ribbonBar13.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar13.BackgroundStyle.Class = "";
+ this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar13.ContainerControlProcessDialogKey = true;
+ this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem127,
+ this.buttonItem128,
+ this.sliderItem1,
+ this.buttonItem134,
+ this.buttonItem130,
+ this.btn_check_history});
+ this.ribbonBar13.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar13.Name = "ribbonBar13";
+ this.ribbonBar13.Size = new System.Drawing.Size(505, 59);
+ this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar13.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar13.TitleStyle.Class = "";
+ this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar13.TitleStyleMouseOver.Class = "";
+ this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar13.TitleVisible = false;
+ //
+ // buttonItem127
+ //
+ this.buttonItem127.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem127.Image")));
+ this.buttonItem127.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem127.Name = "buttonItem127";
+ this.buttonItem127.SubItemsExpandWidth = 14;
+ this.buttonItem127.Text = "打开数据";
+ this.buttonItem127.Click += new System.EventHandler(this.buttonItem127_Click_2);
+ //
+ // buttonItem128
+ //
+ this.buttonItem128.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem128.Image")));
+ this.buttonItem128.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem128.Name = "buttonItem128";
+ this.buttonItem128.SubItemsExpandWidth = 14;
+ this.buttonItem128.Text = "一键审核";
+ this.buttonItem128.Click += new System.EventHandler(this.buttonItem128_Click);
+ //
+ // sliderItem1
+ //
+ this.sliderItem1.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
+ this.sliderItem1.LabelWidth = 50;
+ this.sliderItem1.Name = "sliderItem1";
+ this.sliderItem1.Text = "地面透明度";
+ this.sliderItem1.TextColor = System.Drawing.Color.Black;
+ this.sliderItem1.Value = 0;
+ this.sliderItem1.ValueChanged += new System.EventHandler(this.sliderItem1_ValueChanged);
+ //
+ // buttonItem134
+ //
+ this.buttonItem134.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem134.Image")));
+ this.buttonItem134.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem134.Name = "buttonItem134";
+ this.buttonItem134.SubItemsExpandWidth = 14;
+ this.buttonItem134.Text = "模拟设计修改";
+ this.buttonItem134.Click += new System.EventHandler(this.buttonItem134_Click_1);
+ //
+ // buttonItem130
+ //
+ this.buttonItem130.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem130.Image")));
+ this.buttonItem130.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem130.Name = "buttonItem130";
+ this.buttonItem130.SubItemsExpandWidth = 14;
+ this.buttonItem130.Text = "导出审核图";
+ this.buttonItem130.Click += new System.EventHandler(this.buttonItem130_Click_1);
+ //
+ // btn_check_history
+ //
+ this.btn_check_history.Image = ((System.Drawing.Image)(resources.GetObject("btn_check_history.Image")));
+ this.btn_check_history.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btn_check_history.Name = "btn_check_history";
+ this.btn_check_history.SubItemsExpandWidth = 14;
+ this.btn_check_history.Text = "审核历史";
+ this.btn_check_history.Click += new System.EventHandler(this.btn_check_history_Click);
+ //
+ // ribbonPanel1
+ //
+ this.ribbonPanel1.AutoSize = true;
+ this.ribbonPanel1.CanvasColor = System.Drawing.Color.Gray;
+ this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel1.Controls.Add(this.ribbonBar21);
+ this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel1.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel1.Name = "ribbonPanel1";
+ this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel1.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel1.Style.Class = "";
+ this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel1.StyleMouseDown.Class = "";
+ this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel1.StyleMouseOver.Class = "";
+ this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel1.TabIndex = 1;
+ this.ribbonPanel1.Visible = false;
+ //
+ // ribbonBar21
+ //
+ this.ribbonBar21.AutoOverflowEnabled = true;
+ this.ribbonBar21.BackColor = System.Drawing.Color.White;
+ //
+ //
+ //
+ this.ribbonBar21.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar21.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar21.BackgroundStyle.Class = "";
+ this.ribbonBar21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar21.ContainerControlProcessDialogKey = true;
+ this.ribbonBar21.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar21.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem87,
+ this.buttonItem88,
+ this.buttonItem27,
+ this.sliderGroundTransSet1,
+ this.buttonItem91,
+ this.buttonItem1,
+ this.btnlegendSet,
+ this.buttonItem89,
+ this.btnOutputJPG});
+ this.ribbonBar21.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar21.Name = "ribbonBar21";
+ this.ribbonBar21.Size = new System.Drawing.Size(649, 59);
+ this.ribbonBar21.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar21.TabIndex = 2;
+ this.ribbonBar21.Text = "浏览模式";
+ //
+ //
+ //
+ this.ribbonBar21.TitleStyle.Class = "";
+ this.ribbonBar21.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar21.TitleStyleMouseOver.Class = "";
+ this.ribbonBar21.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar21.TitleVisible = false;
+ //
+ // buttonItem87
+ //
+ this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
+ this.buttonItem87.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem87.Name = "buttonItem87";
+ this.buttonItem87.SubItemsExpandWidth = 14;
+ this.buttonItem87.Text = "地上模式";
+ this.buttonItem87.Click += new System.EventHandler(this.buttonItem87_Click);
+ //
+ // buttonItem88
+ //
+ this.buttonItem88.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem88.Image")));
+ this.buttonItem88.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem88.Name = "buttonItem88";
+ this.buttonItem88.SubItemsExpandWidth = 14;
+ this.buttonItem88.Text = "地下模式";
+ this.buttonItem88.Click += new System.EventHandler(this.buttonItem88_Click);
+ //
+ // buttonItem27
+ //
+ this.buttonItem27.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
+ this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem27.Name = "buttonItem27";
+ this.buttonItem27.SubItemsExpandWidth = 14;
+ this.buttonItem27.Text = "行走模式";
+ this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
+ //
+ // buttonItem91
+ //
+ this.buttonItem91.ForeColor = System.Drawing.Color.Black;
+ this.buttonItem91.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem91.Image")));
+ this.buttonItem91.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem91.Name = "buttonItem91";
+ this.buttonItem91.SubItemsExpandWidth = 14;
+ this.buttonItem91.Text = "快速定位";
+ this.buttonItem91.Click += new System.EventHandler(this.buttonItem91_Click);
+ //
+ // buttonItem1
+ //
+ this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
+ this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem1.Name = "buttonItem1";
+ this.buttonItem1.SubItemsExpandWidth = 14;
+ this.buttonItem1.Text = "图层管理";
+ this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
+ //
+ // btnlegendSet
+ //
+ this.btnlegendSet.Image = ((System.Drawing.Image)(resources.GetObject("btnlegendSet.Image")));
+ this.btnlegendSet.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnlegendSet.Name = "btnlegendSet";
+ this.btnlegendSet.SubItemsExpandWidth = 14;
+ this.btnlegendSet.Text = "图例";
+ this.btnlegendSet.Click += new System.EventHandler(this.btnlegendSet_Click);
+ //
+ // buttonItem89
+ //
+ this.buttonItem89.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem89.Image")));
+ this.buttonItem89.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem89.Name = "buttonItem89";
+ this.buttonItem89.SubItemsExpandWidth = 14;
+ this.buttonItem89.Text = "全屏显示";
+ this.buttonItem89.Click += new System.EventHandler(this.buttonItem89_Click);
+ //
+ // btnOutputJPG
+ //
+ this.btnOutputJPG.Image = ((System.Drawing.Image)(resources.GetObject("btnOutputJPG.Image")));
+ this.btnOutputJPG.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnOutputJPG.Name = "btnOutputJPG";
+ this.btnOutputJPG.SubItemsExpandWidth = 14;
+ this.btnOutputJPG.Text = "导出图片";
+ this.btnOutputJPG.Click += new System.EventHandler(this.btnOutputJPG_Click);
+ //
+ // ribbonPanel4
+ //
+ this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel4.Controls.Add(this.ribbonBar1);
+ this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel4.Location = new System.Drawing.Point(0, 0);
+ this.ribbonPanel4.Name = "ribbonPanel4";
+ this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel4.Size = new System.Drawing.Size(1328, 95);
+ //
+ //
+ //
+ this.ribbonPanel4.Style.Class = "";
+ this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel4.StyleMouseDown.Class = "";
+ this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel4.StyleMouseOver.Class = "";
+ this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel4.TabIndex = 36;
+ this.ribbonPanel4.Visible = false;
+ //
+ // ribbonBar1
+ //
+ this.ribbonBar1.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar1.BackgroundStyle.Class = "";
+ this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar1.ContainerControlProcessDialogKey = true;
+ this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btn_document_info});
+ this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar1.Name = "ribbonBar1";
+ this.ribbonBar1.Size = new System.Drawing.Size(88, 92);
+ this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar1.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar1.TitleStyle.Class = "";
+ this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar1.TitleStyleMouseOver.Class = "";
+ this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar1.TitleVisible = false;
+ //
+ // btn_document_info
+ //
+ this.btn_document_info.Image = ((System.Drawing.Image)(resources.GetObject("btn_document_info.Image")));
+ this.btn_document_info.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btn_document_info.Name = "btn_document_info";
+ this.btn_document_info.SubItemsExpandWidth = 14;
+ this.btn_document_info.Text = "文档管理";
+ this.btn_document_info.Click += new System.EventHandler(this.btn_document_info_Click);
+ //
// ribbonPanel15
//
this.ribbonPanel15.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -2681,108 +3078,6 @@
this.buttonItemXT4_2.Text = "人员修改";
this.buttonItemXT4_2.Click += new System.EventHandler(this.buttonItemXT4_2_Click);
//
- // ribbonPanel5
- //
- this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel5.Controls.Add(this.ribbonBar2);
- this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel5.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel5.Name = "ribbonPanel5";
- this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel5.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel5.Style.Class = "";
- this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel5.StyleMouseDown.Class = "";
- this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel5.StyleMouseOver.Class = "";
- this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel5.TabIndex = 37;
- this.ribbonPanel5.Visible = false;
- //
- // ribbonBar2
- //
- this.ribbonBar2.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar2.BackgroundStyle.Class = "";
- this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar2.ContainerControlProcessDialogKey = true;
- this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItemHX1,
- this.buttonItemHX2,
- this.buttonItemDCTP,
- this.sliderItem3});
- this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar2.Name = "ribbonBar2";
- this.ribbonBar2.Size = new System.Drawing.Size(350, 59);
- this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar2.TabIndex = 0;
- //
- //
- //
- this.ribbonBar2.TitleStyle.Class = "";
- this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar2.TitleStyleMouseOver.Class = "";
- this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar2.TitleVisible = false;
- //
- // buttonItemHX1
- //
- this.buttonItemHX1.AutoExpandOnClick = true;
- this.buttonItemHX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX1.Image")));
- this.buttonItemHX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemHX1.Name = "buttonItemHX1";
- this.buttonItemHX1.SubItemsExpandWidth = 14;
- this.buttonItemHX1.Text = "导入红线";
- this.buttonItemHX1.Click += new System.EventHandler(this.buttonItemHX1_Click);
- //
- // buttonItemHX2
- //
- this.buttonItemHX2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX2.Image")));
- this.buttonItemHX2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemHX2.Name = "buttonItemHX2";
- this.buttonItemHX2.SubItemsExpandWidth = 14;
- this.buttonItemHX2.Text = "红线审核";
- this.buttonItemHX2.Click += new System.EventHandler(this.buttonItemHX2_Click);
- //
- // buttonItemDCTP
- //
- this.buttonItemDCTP.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemDCTP.Image")));
- this.buttonItemDCTP.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemDCTP.Name = "buttonItemDCTP";
- this.buttonItemDCTP.SubItemsExpandWidth = 14;
- this.buttonItemDCTP.Text = "导出图片";
- this.buttonItemDCTP.Click += new System.EventHandler(this.buttonItemDCTP_Click);
- //
- // sliderItem3
- //
- this.sliderItem3.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
- this.sliderItem3.LabelWidth = 50;
- this.sliderItem3.Name = "sliderItem3";
- this.sliderItem3.Text = "地面透明度";
- this.sliderItem3.TextColor = System.Drawing.Color.Black;
- this.sliderItem3.Value = 0;
- this.sliderItem3.ValueChanged += new System.EventHandler(this.sliderItem3_ValueChanged);
- //
// ribbonPanel2
//
this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -3115,391 +3410,6 @@
this.buttonItem14.Text = "导出施工图";
this.buttonItem14.Click += new System.EventHandler(this.buttonItem14_Click);
//
- // ribbonPanel12
- //
- this.ribbonPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel12.Controls.Add(this.ribbonBar18);
- this.ribbonPanel12.Controls.Add(this.ribbonBar13);
- this.ribbonPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel12.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel12.Name = "ribbonPanel12";
- this.ribbonPanel12.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel12.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel12.Style.Class = "";
- this.ribbonPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel12.StyleMouseDown.Class = "";
- this.ribbonPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel12.StyleMouseOver.Class = "";
- this.ribbonPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel12.TabIndex = 34;
- //
- // ribbonBar18
- //
- this.ribbonBar18.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar18.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar18.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar18.BackgroundStyle.Class = "";
- this.ribbonBar18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar18.ContainerControlProcessDialogKey = true;
- this.ribbonBar18.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar18.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem133,
- this.buttonItem132});
- this.ribbonBar18.Location = new System.Drawing.Point(508, 0);
- this.ribbonBar18.Name = "ribbonBar18";
- this.ribbonBar18.Size = new System.Drawing.Size(75, 59);
- this.ribbonBar18.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar18.TabIndex = 1;
- //
- //
- //
- this.ribbonBar18.TitleStyle.Class = "";
- this.ribbonBar18.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar18.TitleStyleMouseOver.Class = "";
- this.ribbonBar18.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar18.TitleVisible = false;
- //
- // buttonItem133
- //
- this.buttonItem133.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem133.Image")));
- this.buttonItem133.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem133.Name = "buttonItem133";
- this.buttonItem133.SubItemsExpandWidth = 14;
- this.buttonItem133.Text = "审核入库";
- this.buttonItem133.Click += new System.EventHandler(this.buttonItem133_Click_1);
- //
- // buttonItem132
- //
- this.buttonItem132.Name = "buttonItem132";
- //
- // ribbonBar13
- //
- this.ribbonBar13.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar13.BackgroundStyle.Class = "";
- this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar13.ContainerControlProcessDialogKey = true;
- this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem127,
- this.buttonItem128,
- this.sliderItem1,
- this.buttonItem134,
- this.buttonItem130,
- this.btn_check_history});
- this.ribbonBar13.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar13.Name = "ribbonBar13";
- this.ribbonBar13.Size = new System.Drawing.Size(505, 59);
- this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar13.TabIndex = 0;
- //
- //
- //
- this.ribbonBar13.TitleStyle.Class = "";
- this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar13.TitleStyleMouseOver.Class = "";
- this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar13.TitleVisible = false;
- //
- // buttonItem127
- //
- this.buttonItem127.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem127.Image")));
- this.buttonItem127.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem127.Name = "buttonItem127";
- this.buttonItem127.SubItemsExpandWidth = 14;
- this.buttonItem127.Text = "打开数据";
- this.buttonItem127.Click += new System.EventHandler(this.buttonItem127_Click_2);
- //
- // buttonItem128
- //
- this.buttonItem128.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem128.Image")));
- this.buttonItem128.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem128.Name = "buttonItem128";
- this.buttonItem128.SubItemsExpandWidth = 14;
- this.buttonItem128.Text = "一键审核";
- this.buttonItem128.Click += new System.EventHandler(this.buttonItem128_Click);
- //
- // sliderItem1
- //
- this.sliderItem1.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
- this.sliderItem1.LabelWidth = 50;
- this.sliderItem1.Name = "sliderItem1";
- this.sliderItem1.Text = "地面透明度";
- this.sliderItem1.TextColor = System.Drawing.Color.Black;
- this.sliderItem1.Value = 0;
- this.sliderItem1.ValueChanged += new System.EventHandler(this.sliderItem1_ValueChanged);
- //
- // buttonItem134
- //
- this.buttonItem134.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem134.Image")));
- this.buttonItem134.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem134.Name = "buttonItem134";
- this.buttonItem134.SubItemsExpandWidth = 14;
- this.buttonItem134.Text = "模拟设计修改";
- this.buttonItem134.Click += new System.EventHandler(this.buttonItem134_Click_1);
- //
- // buttonItem130
- //
- this.buttonItem130.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem130.Image")));
- this.buttonItem130.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem130.Name = "buttonItem130";
- this.buttonItem130.SubItemsExpandWidth = 14;
- this.buttonItem130.Text = "导出审核图";
- this.buttonItem130.Click += new System.EventHandler(this.buttonItem130_Click_1);
- //
- // btn_check_history
- //
- this.btn_check_history.Image = ((System.Drawing.Image)(resources.GetObject("btn_check_history.Image")));
- this.btn_check_history.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btn_check_history.Name = "btn_check_history";
- this.btn_check_history.SubItemsExpandWidth = 14;
- this.btn_check_history.Text = "审核历史";
- this.btn_check_history.Click += new System.EventHandler(this.btn_check_history_Click);
- //
- // ribbonPanel4
- //
- this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel4.Controls.Add(this.ribbonBar1);
- this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel4.Location = new System.Drawing.Point(0, 0);
- this.ribbonPanel4.Name = "ribbonPanel4";
- this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel4.Size = new System.Drawing.Size(1328, 95);
- //
- //
- //
- this.ribbonPanel4.Style.Class = "";
- this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel4.StyleMouseDown.Class = "";
- this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel4.StyleMouseOver.Class = "";
- this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel4.TabIndex = 36;
- this.ribbonPanel4.Visible = false;
- //
- // ribbonBar1
- //
- this.ribbonBar1.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar1.BackgroundStyle.Class = "";
- this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar1.ContainerControlProcessDialogKey = true;
- this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btn_document_info});
- this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar1.Name = "ribbonBar1";
- this.ribbonBar1.Size = new System.Drawing.Size(88, 92);
- this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar1.TabIndex = 0;
- //
- //
- //
- this.ribbonBar1.TitleStyle.Class = "";
- this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar1.TitleStyleMouseOver.Class = "";
- this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar1.TitleVisible = false;
- //
- // btn_document_info
- //
- this.btn_document_info.Image = ((System.Drawing.Image)(resources.GetObject("btn_document_info.Image")));
- this.btn_document_info.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btn_document_info.Name = "btn_document_info";
- this.btn_document_info.SubItemsExpandWidth = 14;
- this.btn_document_info.Text = "文档管理";
- this.btn_document_info.Click += new System.EventHandler(this.btn_document_info_Click);
- //
- // ribbonPanel1
- //
- this.ribbonPanel1.AutoSize = true;
- this.ribbonPanel1.CanvasColor = System.Drawing.Color.Gray;
- this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel1.Controls.Add(this.ribbonBar21);
- this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel1.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel1.Name = "ribbonPanel1";
- this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel1.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel1.Style.Class = "";
- this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel1.StyleMouseDown.Class = "";
- this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel1.StyleMouseOver.Class = "";
- this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel1.TabIndex = 1;
- this.ribbonPanel1.Visible = false;
- //
- // ribbonBar21
- //
- this.ribbonBar21.AutoOverflowEnabled = true;
- this.ribbonBar21.BackColor = System.Drawing.Color.White;
- //
- //
- //
- this.ribbonBar21.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar21.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar21.BackgroundStyle.Class = "";
- this.ribbonBar21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar21.ContainerControlProcessDialogKey = true;
- this.ribbonBar21.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar21.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem87,
- this.buttonItem88,
- this.buttonItem27,
- this.sliderGroundTransSet1,
- this.buttonItem91,
- this.buttonItem1,
- this.btnlegendSet,
- this.buttonItem89,
- this.btnOutputJPG});
- this.ribbonBar21.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar21.Name = "ribbonBar21";
- this.ribbonBar21.Size = new System.Drawing.Size(649, 59);
- this.ribbonBar21.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar21.TabIndex = 2;
- this.ribbonBar21.Text = "浏览模式";
- //
- //
- //
- this.ribbonBar21.TitleStyle.Class = "";
- this.ribbonBar21.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar21.TitleStyleMouseOver.Class = "";
- this.ribbonBar21.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar21.TitleVisible = false;
- //
- // buttonItem87
- //
- this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
- this.buttonItem87.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem87.Name = "buttonItem87";
- this.buttonItem87.SubItemsExpandWidth = 14;
- this.buttonItem87.Text = "地上模式";
- this.buttonItem87.Click += new System.EventHandler(this.buttonItem87_Click);
- //
- // buttonItem88
- //
- this.buttonItem88.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem88.Image")));
- this.buttonItem88.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem88.Name = "buttonItem88";
- this.buttonItem88.SubItemsExpandWidth = 14;
- this.buttonItem88.Text = "地下模式";
- this.buttonItem88.Click += new System.EventHandler(this.buttonItem88_Click);
- //
- // buttonItem27
- //
- this.buttonItem27.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
- this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem27.Name = "buttonItem27";
- this.buttonItem27.SubItemsExpandWidth = 14;
- this.buttonItem27.Text = "行走模式";
- this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
- //
- // buttonItem91
- //
- this.buttonItem91.ForeColor = System.Drawing.Color.Black;
- this.buttonItem91.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem91.Image")));
- this.buttonItem91.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem91.Name = "buttonItem91";
- this.buttonItem91.SubItemsExpandWidth = 14;
- this.buttonItem91.Text = "快速定位";
- this.buttonItem91.Click += new System.EventHandler(this.buttonItem91_Click);
- //
- // buttonItem1
- //
- this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
- this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem1.Name = "buttonItem1";
- this.buttonItem1.SubItemsExpandWidth = 14;
- this.buttonItem1.Text = "图层管理";
- this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
- //
- // btnlegendSet
- //
- this.btnlegendSet.Image = ((System.Drawing.Image)(resources.GetObject("btnlegendSet.Image")));
- this.btnlegendSet.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnlegendSet.Name = "btnlegendSet";
- this.btnlegendSet.SubItemsExpandWidth = 14;
- this.btnlegendSet.Text = "图例";
- this.btnlegendSet.Click += new System.EventHandler(this.btnlegendSet_Click);
- //
- // buttonItem89
- //
- this.buttonItem89.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem89.Image")));
- this.buttonItem89.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem89.Name = "buttonItem89";
- this.buttonItem89.SubItemsExpandWidth = 14;
- this.buttonItem89.Text = "全屏显示";
- this.buttonItem89.Click += new System.EventHandler(this.buttonItem89_Click);
- //
- // btnOutputJPG
- //
- this.btnOutputJPG.Image = ((System.Drawing.Image)(resources.GetObject("btnOutputJPG.Image")));
- this.btnOutputJPG.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnOutputJPG.Name = "btnOutputJPG";
- this.btnOutputJPG.SubItemsExpandWidth = 14;
- this.btnOutputJPG.Text = "导出图片";
- this.btnOutputJPG.Click += new System.EventHandler(this.btnOutputJPG_Click);
- //
// ribbonPanel6
//
this.ribbonPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -3611,6 +3521,108 @@
this.buttonItemGBJC.Text = "国标检测";
this.buttonItemGBJC.Click += new System.EventHandler(this.buttonItemGBJC_Click);
//
+ // ribbonPanel5
+ //
+ this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel5.Controls.Add(this.ribbonBar2);
+ this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel5.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel5.Name = "ribbonPanel5";
+ this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel5.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel5.Style.Class = "";
+ this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel5.StyleMouseDown.Class = "";
+ this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel5.StyleMouseOver.Class = "";
+ this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel5.TabIndex = 37;
+ this.ribbonPanel5.Visible = false;
+ //
+ // ribbonBar2
+ //
+ this.ribbonBar2.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar2.BackgroundStyle.Class = "";
+ this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar2.ContainerControlProcessDialogKey = true;
+ this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItemHX1,
+ this.buttonItemHX2,
+ this.buttonItemDCTP,
+ this.sliderItem3});
+ this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar2.Name = "ribbonBar2";
+ this.ribbonBar2.Size = new System.Drawing.Size(350, 59);
+ this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar2.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar2.TitleStyle.Class = "";
+ this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar2.TitleStyleMouseOver.Class = "";
+ this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar2.TitleVisible = false;
+ //
+ // buttonItemHX1
+ //
+ this.buttonItemHX1.AutoExpandOnClick = true;
+ this.buttonItemHX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX1.Image")));
+ this.buttonItemHX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemHX1.Name = "buttonItemHX1";
+ this.buttonItemHX1.SubItemsExpandWidth = 14;
+ this.buttonItemHX1.Text = "导入红线";
+ this.buttonItemHX1.Click += new System.EventHandler(this.buttonItemHX1_Click);
+ //
+ // buttonItemHX2
+ //
+ this.buttonItemHX2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX2.Image")));
+ this.buttonItemHX2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemHX2.Name = "buttonItemHX2";
+ this.buttonItemHX2.SubItemsExpandWidth = 14;
+ this.buttonItemHX2.Text = "红线审核";
+ this.buttonItemHX2.Click += new System.EventHandler(this.buttonItemHX2_Click);
+ //
+ // buttonItemDCTP
+ //
+ this.buttonItemDCTP.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemDCTP.Image")));
+ this.buttonItemDCTP.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemDCTP.Name = "buttonItemDCTP";
+ this.buttonItemDCTP.SubItemsExpandWidth = 14;
+ this.buttonItemDCTP.Text = "导出图片";
+ this.buttonItemDCTP.Click += new System.EventHandler(this.buttonItemDCTP_Click);
+ //
+ // sliderItem3
+ //
+ this.sliderItem3.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
+ this.sliderItem3.LabelWidth = 50;
+ this.sliderItem3.Name = "sliderItem3";
+ this.sliderItem3.Text = "地面透明度";
+ this.sliderItem3.TextColor = System.Drawing.Color.Black;
+ this.sliderItem3.Value = 0;
+ this.sliderItem3.ValueChanged += new System.EventHandler(this.sliderItem3_ValueChanged);
+ //
// ribbonTabItem1
//
this.ribbonTabItem1.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
@@ -4457,7 +4469,7 @@
this.dataGridViewX2.ReadOnly = true;
this.dataGridViewX2.RowHeadersVisible = false;
this.dataGridViewX2.RowTemplate.Height = 23;
- this.dataGridViewX2.Size = new System.Drawing.Size(34645, 92);
+ this.dataGridViewX2.Size = new System.Drawing.Size(34942, 92);
this.dataGridViewX2.TabIndex = 11;
//
// dataGridViewTextBoxColumn10
@@ -4551,7 +4563,7 @@
this.dataGridViewX3.ReadOnly = true;
this.dataGridViewX3.RowHeadersVisible = false;
this.dataGridViewX3.RowTemplate.Height = 23;
- this.dataGridViewX3.Size = new System.Drawing.Size(34644, 127);
+ this.dataGridViewX3.Size = new System.Drawing.Size(34941, 127);
this.dataGridViewX3.TabIndex = 5;
this.dataGridViewX3.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.dataGridViewX3_MouseDoubleClick);
//
@@ -5737,18 +5749,6 @@
this.pictureBox1.TabStop = false;
this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
//
- // layerTree
- //
- this.layerTree.CheckBoxes = true;
- this.layerTree.ItemHeight = 18;
- this.layerTree.Location = new System.Drawing.Point(30, 78);
- this.layerTree.Name = "layerTree";
- this.layerTree.Size = new System.Drawing.Size(121, 97);
- this.layerTree.TabIndex = 1;
- this.layerTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.layerTree_AfterCheck);
- this.layerTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseClick);
- this.layerTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
- //
// MainFrm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
@@ -5791,15 +5791,15 @@
this.contextMenuStripDeleteLayerNode.ResumeLayout(false);
this.ribbonControl1.ResumeLayout(false);
this.ribbonControl1.PerformLayout();
+ this.ribbonPanel12.ResumeLayout(false);
+ this.ribbonPanel1.ResumeLayout(false);
+ this.ribbonPanel4.ResumeLayout(false);
this.ribbonPanel15.ResumeLayout(false);
- this.ribbonPanel5.ResumeLayout(false);
this.ribbonPanel2.ResumeLayout(false);
this.ribbonPanel3.ResumeLayout(false);
this.ribbonPanel7.ResumeLayout(false);
- this.ribbonPanel12.ResumeLayout(false);
- this.ribbonPanel4.ResumeLayout(false);
- this.ribbonPanel1.ResumeLayout(false);
this.ribbonPanel6.ResumeLayout(false);
+ this.ribbonPanel5.ResumeLayout(false);
this.panelOfTable.ResumeLayout(false);
this.panelOfTable.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
diff --git a/Cyberpipe.suo b/Cyberpipe.suo
index ab59cf3..2ccc843 100644
--- a/Cyberpipe.suo
+++ b/Cyberpipe.suo
Binary files differ
diff --git a/MainFrm.cs b/MainFrm.cs
index 79f72dd..732a3ac 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -1574,11 +1574,13 @@
GSOLayer gsoLayer = e.Node.Tag as GSOLayer;
if (gsoLayer == null || gsoLayer.Caption.Equals(Utility.roadLayerName)) return;
- if (e.Node.Parent.Text.Equals("临时图层") || e.Node.Parent.Text.Equals("我的地标"))
+ if (e.Node.Parent.Text.Equals("临时图层"))//|| e.Node.Parent.Text.Equals("我的地标")
{
//临时图层下的子节点应该展示的
contextMenuStripDeleteLayerNode.Show(layerTree, e.X, e.Y);
contextMenuStripDeleteLayerNode.Tag = e.Node;
+ GSOLayer layer = e.Node.Tag as GSOLayer;
+ 可编辑ToolStripMenuItem.Checked = layer.Editable;//可编辑状态
}
else
{
@@ -5849,13 +5851,18 @@
private void NetworkTraceUpDown(Boolean bTraceUp)
{
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer; ;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
-
NetworkAnalysisTool.TraceUpDownAnalysis(bTraceUp,
selLineFeature, selLayer);
}
@@ -5879,16 +5886,24 @@
///
private void 关阀分析ToolStripMenuItem_Click(object sender, EventArgs e)
{
- if (globeControl1.Globe.SelObjectCount < 1)
- {
- MessageBox.Show("请选中至少一根管线!!");
- 流向分析ToolStripMenuItem.Checked = false;
- return;
- }
+// if (globeControl1.Globe.SelObjectCount < 1)
+// {
+// MessageBox.Show("请选中至少一根管线!!");
+// 流向分析ToolStripMenuItem.Checked = false;
+// return;
+// }
GSOLayer resLayer = null;
GSOFeature resFeature = null;
- globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
-
+
+ if (globeControl1.Globe.SelObjectCount < 1)
+ {
+ resLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ resFeature = resLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
+ }
+ else
+ {
+ globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
+ }
String pipeLayerName = resLayer.Caption;
String pipeLayerNamePrefix = pipeLayerName.Substring(0, pipeLayerName.IndexOf("管线"));
GSOLayer valveLayer = globeControl1.Globe.Layers[pipeLayerNamePrefix + "阀门"];
@@ -5947,12 +5962,18 @@
NetworkTraceUpDown(true); //上游追踪:
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
NetworkAnalysisTool.ExplodeAnalysis(globeControl1, selLineFeature, selLayer);
diff --git a/MainFrm.designer.cs b/MainFrm.designer.cs
index f473335..fa30208 100644
--- a/MainFrm.designer.cs
+++ b/MainFrm.designer.cs
@@ -90,6 +90,7 @@
this.sideBar1 = new DevComponents.DotNetBar.SideBar();
this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
this.layerSensorTree = new System.Windows.Forms.TreeView();
+ this.layerTree = new Cyberpipe.MyTreeView();
this.sideBarPanelItem3 = new DevComponents.DotNetBar.SideBarPanelItem();
this.controlContainerItem3 = new DevComponents.DotNetBar.ControlContainerItem();
this.sideBarPanelItem4 = new DevComponents.DotNetBar.SideBarPanelItem();
@@ -244,6 +245,30 @@
this.保存ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.定位ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
+ this.ribbonPanel12 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar18 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem133 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem132 = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem127 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem128 = new DevComponents.DotNetBar.ButtonItem();
+ this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
+ this.buttonItem134 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem130 = new DevComponents.DotNetBar.ButtonItem();
+ this.btn_check_history = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar21 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem87 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem88 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem91 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
+ this.btnlegendSet = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem89 = new DevComponents.DotNetBar.ButtonItem();
+ this.btnOutputJPG = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
+ this.btn_document_info = new DevComponents.DotNetBar.ButtonItem();
this.ribbonPanel15 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar20 = new DevComponents.DotNetBar.RibbonBar();
this.buttonItemSH = new DevComponents.DotNetBar.ButtonItem();
@@ -299,12 +324,6 @@
this.buttonItemXT4 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItemXT4_1 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItemXT4_2 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItemHX1 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItemHX2 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItemDCTP = new DevComponents.DotNetBar.ButtonItem();
- this.sliderItem3 = new DevComponents.DotNetBar.SliderItem();
this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
this.btn_user_info = new DevComponents.DotNetBar.ButtonItem();
@@ -326,30 +345,6 @@
this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel12 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar18 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem133 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem132 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem127 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem128 = new DevComponents.DotNetBar.ButtonItem();
- this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
- this.buttonItem134 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem130 = new DevComponents.DotNetBar.ButtonItem();
- this.btn_check_history = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
- this.btn_document_info = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar21 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem87 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem88 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem91 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
- this.btnlegendSet = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem89 = new DevComponents.DotNetBar.ButtonItem();
- this.btnOutputJPG = new DevComponents.DotNetBar.ButtonItem();
this.ribbonPanel6 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar6 = new DevComponents.DotNetBar.RibbonBar();
this.buttonItemSPSZ = new DevComponents.DotNetBar.ButtonItem();
@@ -357,6 +352,12 @@
this.buttonItemLocation = new DevComponents.DotNetBar.ButtonItem();
this.sliderItem2 = new DevComponents.DotNetBar.SliderItem();
this.buttonItemGBJC = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItemHX1 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItemHX2 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItemDCTP = new DevComponents.DotNetBar.ButtonItem();
+ this.sliderItem3 = new DevComponents.DotNetBar.SliderItem();
this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
this.ribbonTabItem11 = new DevComponents.DotNetBar.RibbonTabItem();
this.ribbonTabItem6 = new DevComponents.DotNetBar.RibbonTabItem();
@@ -518,7 +519,6 @@
this.labelX17 = new DevComponents.DotNetBar.LabelX();
this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.layerTree = new Cyberpipe.MyTreeView();
this.statusStrip1.SuspendLayout();
this.sideBar1.SuspendLayout();
this.panelEx3.SuspendLayout();
@@ -529,15 +529,15 @@
this.contextMenuStrip3.SuspendLayout();
this.contextMenuStripDeleteLayerNode.SuspendLayout();
this.ribbonControl1.SuspendLayout();
+ this.ribbonPanel12.SuspendLayout();
+ this.ribbonPanel1.SuspendLayout();
+ this.ribbonPanel4.SuspendLayout();
this.ribbonPanel15.SuspendLayout();
- this.ribbonPanel5.SuspendLayout();
this.ribbonPanel2.SuspendLayout();
this.ribbonPanel3.SuspendLayout();
this.ribbonPanel7.SuspendLayout();
- this.ribbonPanel12.SuspendLayout();
- this.ribbonPanel4.SuspendLayout();
- this.ribbonPanel1.SuspendLayout();
this.ribbonPanel6.SuspendLayout();
+ this.ribbonPanel5.SuspendLayout();
this.panelOfTable.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
this.statusStrip2.SuspendLayout();
@@ -957,6 +957,18 @@
this.layerSensorTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerMarkerTree_NodeMouseClick);
this.layerSensorTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
//
+ // layerTree
+ //
+ this.layerTree.CheckBoxes = true;
+ this.layerTree.ItemHeight = 18;
+ this.layerTree.Location = new System.Drawing.Point(30, 78);
+ this.layerTree.Name = "layerTree";
+ this.layerTree.Size = new System.Drawing.Size(121, 97);
+ this.layerTree.TabIndex = 1;
+ this.layerTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.layerTree_AfterCheck);
+ this.layerTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseClick);
+ this.layerTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
+ //
// sideBarPanelItem3
//
this.sideBarPanelItem3.FontBold = true;
@@ -1131,7 +1143,7 @@
this.区域分析ToolStripMenuItem,
this.清除分析ToolStripMenuItem});
this.toolRightMenu.Name = "toolRightMenu";
- this.toolRightMenu.Size = new System.Drawing.Size(149, 290);
+ this.toolRightMenu.Size = new System.Drawing.Size(153, 312);
//
// 量算ToolStripMenuItem
//
@@ -1144,7 +1156,7 @@
this.水平面积ToolStripMenuItem1,
this.地表面积ToolStripMenuItem1});
this.量算ToolStripMenuItem.Name = "量算ToolStripMenuItem";
- this.量算ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.量算ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.量算ToolStripMenuItem.Text = "量算";
//
// 水平距离ToolStripMenuItem1
@@ -1207,7 +1219,7 @@
this.前进ToolStripMenuItem,
this.后退ToolStripMenuItem});
this.编辑ToolStripMenuItem.Name = "编辑ToolStripMenuItem";
- this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.编辑ToolStripMenuItem.Text = "编辑";
//
// 平移对象ToolStripMenuItem
@@ -1283,7 +1295,7 @@
this.绕中心点飞行ToolStripMenuItem,
this.绕眼睛飞行ToolStripMenuItem});
this.飞行ToolStripMenuItem.Name = "飞行ToolStripMenuItem";
- this.飞行ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.飞行ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.飞行ToolStripMenuItem.Text = "飞行";
//
// 自定义飞行ToolStripMenuItem
@@ -1328,7 +1340,7 @@
this.属性标注ToolStripMenuItem,
this.标注管理ToolStripMenuItem});
this.标注ToolStripMenuItem.Name = "标注ToolStripMenuItem";
- this.标注ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.标注ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.标注ToolStripMenuItem.Text = "标注";
//
// 标高标注ToolStripMenuItem
@@ -1415,7 +1427,7 @@
this.关联查询ToolStripMenuItem,
this.关键字查询ToolStripMenuItem});
this.查询ToolStripMenuItem.Name = "查询ToolStripMenuItem";
- this.查询ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.查询ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.查询ToolStripMenuItem.Text = "查询";
//
// 空间查询ToolStripMenuItem
@@ -1501,7 +1513,7 @@
this.附属物分类统计ToolStripMenuItem,
this.标识器分类统计ToolStripMenuItem});
this.全区域统计ToolStripMenuItem.Name = "全区域统计ToolStripMenuItem";
- this.全区域统计ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.全区域统计ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.全区域统计ToolStripMenuItem.Text = "全区域统计";
//
// 管线长度统计ToolStripMenuItem
@@ -1580,7 +1592,7 @@
this.附属物分类统计ToolStripMenuItem1,
this.标识器分类统计ToolStripMenuItem1});
this.绘制区域统计ToolStripMenuItem.Name = "绘制区域统计ToolStripMenuItem";
- this.绘制区域统计ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.绘制区域统计ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.绘制区域统计ToolStripMenuItem.Text = "绘制区域统计";
//
// 管线长度统计ToolStripMenuItem1
@@ -1654,7 +1666,7 @@
this.道路断面分析ToolStripMenuItem,
this.基线剖面分析ToolStripMenuItem});
this.断面分析ToolStripMenuItem.Name = "断面分析ToolStripMenuItem";
- this.断面分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.断面分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.断面分析ToolStripMenuItem.Text = "断面分析";
//
// 横断面分析ToolStripMenuItem
@@ -1696,55 +1708,55 @@
this.连通分析ToolStripMenuItem,
this.爆管分析ToolStripMenuItem});
this.拓扑分析ToolStripMenuItem.Name = "拓扑分析ToolStripMenuItem";
- this.拓扑分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.拓扑分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.拓扑分析ToolStripMenuItem.Text = "拓扑分析";
//
// 创建拓扑ToolStripMenuItem
//
this.创建拓扑ToolStripMenuItem.Name = "创建拓扑ToolStripMenuItem";
- this.创建拓扑ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.创建拓扑ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.创建拓扑ToolStripMenuItem.Text = "创建拓扑";
this.创建拓扑ToolStripMenuItem.Click += new System.EventHandler(this.创建拓扑ToolStripMenuItem_Click);
//
// 上游分析ToolStripMenuItem
//
this.上游分析ToolStripMenuItem.Name = "上游分析ToolStripMenuItem";
- this.上游分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.上游分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.上游分析ToolStripMenuItem.Text = "上游分析";
this.上游分析ToolStripMenuItem.Click += new System.EventHandler(this.上游分析ToolStripMenuItem_Click);
//
// 下游分析ToolStripMenuItem
//
this.下游分析ToolStripMenuItem.Name = "下游分析ToolStripMenuItem";
- this.下游分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.下游分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.下游分析ToolStripMenuItem.Text = "下游分析";
this.下游分析ToolStripMenuItem.Click += new System.EventHandler(this.下游分析ToolStripMenuItem_Click);
//
// 流向分析ToolStripMenuItem
//
this.流向分析ToolStripMenuItem.Name = "流向分析ToolStripMenuItem";
- this.流向分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.流向分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.流向分析ToolStripMenuItem.Text = "流向分析";
this.流向分析ToolStripMenuItem.Click += new System.EventHandler(this.流向分析ToolStripMenuItem_Click);
//
// 关阀分析ToolStripMenuItem
//
this.关阀分析ToolStripMenuItem.Name = "关阀分析ToolStripMenuItem";
- this.关阀分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.关阀分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.关阀分析ToolStripMenuItem.Text = "关阀分析";
this.关阀分析ToolStripMenuItem.Click += new System.EventHandler(this.关阀分析ToolStripMenuItem_Click);
//
// 连通分析ToolStripMenuItem
//
this.连通分析ToolStripMenuItem.Name = "连通分析ToolStripMenuItem";
- this.连通分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.连通分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.连通分析ToolStripMenuItem.Text = "连通分析";
this.连通分析ToolStripMenuItem.Click += new System.EventHandler(this.连通分析ToolStripMenuItem_Click);
//
// 爆管分析ToolStripMenuItem
//
this.爆管分析ToolStripMenuItem.Name = "爆管分析ToolStripMenuItem";
- this.爆管分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.爆管分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.爆管分析ToolStripMenuItem.Text = "爆管分析";
this.爆管分析ToolStripMenuItem.Click += new System.EventHandler(this.爆管分析ToolStripMenuItem_Click);
//
@@ -1758,7 +1770,7 @@
this.隐藏隧道ToolStripMenuItem,
this.删除隧道ToolStripMenuItem});
this.开挖分析ToolStripMenuItem.Name = "开挖分析ToolStripMenuItem";
- this.开挖分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.开挖分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.开挖分析ToolStripMenuItem.Text = "开挖分析";
//
// 多边形开挖ToolStripMenuItem
@@ -1810,7 +1822,7 @@
this.可视域分析ToolStripMenuItem,
this.可视包络分析ToolStripMenuItem});
this.视域分析ToolStripMenuItem.Name = "视域分析ToolStripMenuItem";
- this.视域分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.视域分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.视域分析ToolStripMenuItem.Text = "视域分析";
//
// 通视分析ToolStripMenuItem
@@ -1841,7 +1853,7 @@
this.缓冲区分析ToolStripMenuItem,
this.无源淹没分析ToolStripMenuItem});
this.区域分析ToolStripMenuItem.Name = "区域分析ToolStripMenuItem";
- this.区域分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.区域分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.区域分析ToolStripMenuItem.Text = "区域分析";
//
// 附属物分析ToolStripMenuItem
@@ -1868,7 +1880,7 @@
// 清除分析ToolStripMenuItem
//
this.清除分析ToolStripMenuItem.Name = "清除分析ToolStripMenuItem";
- this.清除分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.清除分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.清除分析ToolStripMenuItem.Text = "清除分析";
this.清除分析ToolStripMenuItem.Click += new System.EventHandler(this.buttonItemClear_Click);
//
@@ -2201,6 +2213,391 @@
this.ribbonControl1.Text = "ribbonControl1";
this.ribbonControl1.UseCustomizeDialog = false;
//
+ // ribbonPanel12
+ //
+ this.ribbonPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel12.Controls.Add(this.ribbonBar18);
+ this.ribbonPanel12.Controls.Add(this.ribbonBar13);
+ this.ribbonPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel12.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel12.Name = "ribbonPanel12";
+ this.ribbonPanel12.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel12.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel12.Style.Class = "";
+ this.ribbonPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel12.StyleMouseDown.Class = "";
+ this.ribbonPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel12.StyleMouseOver.Class = "";
+ this.ribbonPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel12.TabIndex = 34;
+ //
+ // ribbonBar18
+ //
+ this.ribbonBar18.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar18.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar18.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar18.BackgroundStyle.Class = "";
+ this.ribbonBar18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar18.ContainerControlProcessDialogKey = true;
+ this.ribbonBar18.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar18.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem133,
+ this.buttonItem132});
+ this.ribbonBar18.Location = new System.Drawing.Point(508, 0);
+ this.ribbonBar18.Name = "ribbonBar18";
+ this.ribbonBar18.Size = new System.Drawing.Size(75, 59);
+ this.ribbonBar18.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar18.TabIndex = 1;
+ //
+ //
+ //
+ this.ribbonBar18.TitleStyle.Class = "";
+ this.ribbonBar18.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar18.TitleStyleMouseOver.Class = "";
+ this.ribbonBar18.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar18.TitleVisible = false;
+ //
+ // buttonItem133
+ //
+ this.buttonItem133.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem133.Image")));
+ this.buttonItem133.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem133.Name = "buttonItem133";
+ this.buttonItem133.SubItemsExpandWidth = 14;
+ this.buttonItem133.Text = "审核入库";
+ this.buttonItem133.Click += new System.EventHandler(this.buttonItem133_Click_1);
+ //
+ // buttonItem132
+ //
+ this.buttonItem132.Name = "buttonItem132";
+ //
+ // ribbonBar13
+ //
+ this.ribbonBar13.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar13.BackgroundStyle.Class = "";
+ this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar13.ContainerControlProcessDialogKey = true;
+ this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem127,
+ this.buttonItem128,
+ this.sliderItem1,
+ this.buttonItem134,
+ this.buttonItem130,
+ this.btn_check_history});
+ this.ribbonBar13.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar13.Name = "ribbonBar13";
+ this.ribbonBar13.Size = new System.Drawing.Size(505, 59);
+ this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar13.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar13.TitleStyle.Class = "";
+ this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar13.TitleStyleMouseOver.Class = "";
+ this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar13.TitleVisible = false;
+ //
+ // buttonItem127
+ //
+ this.buttonItem127.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem127.Image")));
+ this.buttonItem127.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem127.Name = "buttonItem127";
+ this.buttonItem127.SubItemsExpandWidth = 14;
+ this.buttonItem127.Text = "打开数据";
+ this.buttonItem127.Click += new System.EventHandler(this.buttonItem127_Click_2);
+ //
+ // buttonItem128
+ //
+ this.buttonItem128.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem128.Image")));
+ this.buttonItem128.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem128.Name = "buttonItem128";
+ this.buttonItem128.SubItemsExpandWidth = 14;
+ this.buttonItem128.Text = "一键审核";
+ this.buttonItem128.Click += new System.EventHandler(this.buttonItem128_Click);
+ //
+ // sliderItem1
+ //
+ this.sliderItem1.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
+ this.sliderItem1.LabelWidth = 50;
+ this.sliderItem1.Name = "sliderItem1";
+ this.sliderItem1.Text = "地面透明度";
+ this.sliderItem1.TextColor = System.Drawing.Color.Black;
+ this.sliderItem1.Value = 0;
+ this.sliderItem1.ValueChanged += new System.EventHandler(this.sliderItem1_ValueChanged);
+ //
+ // buttonItem134
+ //
+ this.buttonItem134.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem134.Image")));
+ this.buttonItem134.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem134.Name = "buttonItem134";
+ this.buttonItem134.SubItemsExpandWidth = 14;
+ this.buttonItem134.Text = "模拟设计修改";
+ this.buttonItem134.Click += new System.EventHandler(this.buttonItem134_Click_1);
+ //
+ // buttonItem130
+ //
+ this.buttonItem130.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem130.Image")));
+ this.buttonItem130.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem130.Name = "buttonItem130";
+ this.buttonItem130.SubItemsExpandWidth = 14;
+ this.buttonItem130.Text = "导出审核图";
+ this.buttonItem130.Click += new System.EventHandler(this.buttonItem130_Click_1);
+ //
+ // btn_check_history
+ //
+ this.btn_check_history.Image = ((System.Drawing.Image)(resources.GetObject("btn_check_history.Image")));
+ this.btn_check_history.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btn_check_history.Name = "btn_check_history";
+ this.btn_check_history.SubItemsExpandWidth = 14;
+ this.btn_check_history.Text = "审核历史";
+ this.btn_check_history.Click += new System.EventHandler(this.btn_check_history_Click);
+ //
+ // ribbonPanel1
+ //
+ this.ribbonPanel1.AutoSize = true;
+ this.ribbonPanel1.CanvasColor = System.Drawing.Color.Gray;
+ this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel1.Controls.Add(this.ribbonBar21);
+ this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel1.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel1.Name = "ribbonPanel1";
+ this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel1.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel1.Style.Class = "";
+ this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel1.StyleMouseDown.Class = "";
+ this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel1.StyleMouseOver.Class = "";
+ this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel1.TabIndex = 1;
+ this.ribbonPanel1.Visible = false;
+ //
+ // ribbonBar21
+ //
+ this.ribbonBar21.AutoOverflowEnabled = true;
+ this.ribbonBar21.BackColor = System.Drawing.Color.White;
+ //
+ //
+ //
+ this.ribbonBar21.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar21.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar21.BackgroundStyle.Class = "";
+ this.ribbonBar21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar21.ContainerControlProcessDialogKey = true;
+ this.ribbonBar21.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar21.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem87,
+ this.buttonItem88,
+ this.buttonItem27,
+ this.sliderGroundTransSet1,
+ this.buttonItem91,
+ this.buttonItem1,
+ this.btnlegendSet,
+ this.buttonItem89,
+ this.btnOutputJPG});
+ this.ribbonBar21.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar21.Name = "ribbonBar21";
+ this.ribbonBar21.Size = new System.Drawing.Size(649, 59);
+ this.ribbonBar21.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar21.TabIndex = 2;
+ this.ribbonBar21.Text = "浏览模式";
+ //
+ //
+ //
+ this.ribbonBar21.TitleStyle.Class = "";
+ this.ribbonBar21.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar21.TitleStyleMouseOver.Class = "";
+ this.ribbonBar21.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar21.TitleVisible = false;
+ //
+ // buttonItem87
+ //
+ this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
+ this.buttonItem87.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem87.Name = "buttonItem87";
+ this.buttonItem87.SubItemsExpandWidth = 14;
+ this.buttonItem87.Text = "地上模式";
+ this.buttonItem87.Click += new System.EventHandler(this.buttonItem87_Click);
+ //
+ // buttonItem88
+ //
+ this.buttonItem88.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem88.Image")));
+ this.buttonItem88.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem88.Name = "buttonItem88";
+ this.buttonItem88.SubItemsExpandWidth = 14;
+ this.buttonItem88.Text = "地下模式";
+ this.buttonItem88.Click += new System.EventHandler(this.buttonItem88_Click);
+ //
+ // buttonItem27
+ //
+ this.buttonItem27.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
+ this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem27.Name = "buttonItem27";
+ this.buttonItem27.SubItemsExpandWidth = 14;
+ this.buttonItem27.Text = "行走模式";
+ this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
+ //
+ // buttonItem91
+ //
+ this.buttonItem91.ForeColor = System.Drawing.Color.Black;
+ this.buttonItem91.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem91.Image")));
+ this.buttonItem91.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem91.Name = "buttonItem91";
+ this.buttonItem91.SubItemsExpandWidth = 14;
+ this.buttonItem91.Text = "快速定位";
+ this.buttonItem91.Click += new System.EventHandler(this.buttonItem91_Click);
+ //
+ // buttonItem1
+ //
+ this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
+ this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem1.Name = "buttonItem1";
+ this.buttonItem1.SubItemsExpandWidth = 14;
+ this.buttonItem1.Text = "图层管理";
+ this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
+ //
+ // btnlegendSet
+ //
+ this.btnlegendSet.Image = ((System.Drawing.Image)(resources.GetObject("btnlegendSet.Image")));
+ this.btnlegendSet.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnlegendSet.Name = "btnlegendSet";
+ this.btnlegendSet.SubItemsExpandWidth = 14;
+ this.btnlegendSet.Text = "图例";
+ this.btnlegendSet.Click += new System.EventHandler(this.btnlegendSet_Click);
+ //
+ // buttonItem89
+ //
+ this.buttonItem89.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem89.Image")));
+ this.buttonItem89.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem89.Name = "buttonItem89";
+ this.buttonItem89.SubItemsExpandWidth = 14;
+ this.buttonItem89.Text = "全屏显示";
+ this.buttonItem89.Click += new System.EventHandler(this.buttonItem89_Click);
+ //
+ // btnOutputJPG
+ //
+ this.btnOutputJPG.Image = ((System.Drawing.Image)(resources.GetObject("btnOutputJPG.Image")));
+ this.btnOutputJPG.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnOutputJPG.Name = "btnOutputJPG";
+ this.btnOutputJPG.SubItemsExpandWidth = 14;
+ this.btnOutputJPG.Text = "导出图片";
+ this.btnOutputJPG.Click += new System.EventHandler(this.btnOutputJPG_Click);
+ //
+ // ribbonPanel4
+ //
+ this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel4.Controls.Add(this.ribbonBar1);
+ this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel4.Location = new System.Drawing.Point(0, 0);
+ this.ribbonPanel4.Name = "ribbonPanel4";
+ this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel4.Size = new System.Drawing.Size(1328, 95);
+ //
+ //
+ //
+ this.ribbonPanel4.Style.Class = "";
+ this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel4.StyleMouseDown.Class = "";
+ this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel4.StyleMouseOver.Class = "";
+ this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel4.TabIndex = 36;
+ this.ribbonPanel4.Visible = false;
+ //
+ // ribbonBar1
+ //
+ this.ribbonBar1.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar1.BackgroundStyle.Class = "";
+ this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar1.ContainerControlProcessDialogKey = true;
+ this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btn_document_info});
+ this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar1.Name = "ribbonBar1";
+ this.ribbonBar1.Size = new System.Drawing.Size(88, 92);
+ this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar1.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar1.TitleStyle.Class = "";
+ this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar1.TitleStyleMouseOver.Class = "";
+ this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar1.TitleVisible = false;
+ //
+ // btn_document_info
+ //
+ this.btn_document_info.Image = ((System.Drawing.Image)(resources.GetObject("btn_document_info.Image")));
+ this.btn_document_info.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btn_document_info.Name = "btn_document_info";
+ this.btn_document_info.SubItemsExpandWidth = 14;
+ this.btn_document_info.Text = "文档管理";
+ this.btn_document_info.Click += new System.EventHandler(this.btn_document_info_Click);
+ //
// ribbonPanel15
//
this.ribbonPanel15.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -2681,108 +3078,6 @@
this.buttonItemXT4_2.Text = "人员修改";
this.buttonItemXT4_2.Click += new System.EventHandler(this.buttonItemXT4_2_Click);
//
- // ribbonPanel5
- //
- this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel5.Controls.Add(this.ribbonBar2);
- this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel5.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel5.Name = "ribbonPanel5";
- this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel5.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel5.Style.Class = "";
- this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel5.StyleMouseDown.Class = "";
- this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel5.StyleMouseOver.Class = "";
- this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel5.TabIndex = 37;
- this.ribbonPanel5.Visible = false;
- //
- // ribbonBar2
- //
- this.ribbonBar2.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar2.BackgroundStyle.Class = "";
- this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar2.ContainerControlProcessDialogKey = true;
- this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItemHX1,
- this.buttonItemHX2,
- this.buttonItemDCTP,
- this.sliderItem3});
- this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar2.Name = "ribbonBar2";
- this.ribbonBar2.Size = new System.Drawing.Size(350, 59);
- this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar2.TabIndex = 0;
- //
- //
- //
- this.ribbonBar2.TitleStyle.Class = "";
- this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar2.TitleStyleMouseOver.Class = "";
- this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar2.TitleVisible = false;
- //
- // buttonItemHX1
- //
- this.buttonItemHX1.AutoExpandOnClick = true;
- this.buttonItemHX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX1.Image")));
- this.buttonItemHX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemHX1.Name = "buttonItemHX1";
- this.buttonItemHX1.SubItemsExpandWidth = 14;
- this.buttonItemHX1.Text = "导入红线";
- this.buttonItemHX1.Click += new System.EventHandler(this.buttonItemHX1_Click);
- //
- // buttonItemHX2
- //
- this.buttonItemHX2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX2.Image")));
- this.buttonItemHX2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemHX2.Name = "buttonItemHX2";
- this.buttonItemHX2.SubItemsExpandWidth = 14;
- this.buttonItemHX2.Text = "红线审核";
- this.buttonItemHX2.Click += new System.EventHandler(this.buttonItemHX2_Click);
- //
- // buttonItemDCTP
- //
- this.buttonItemDCTP.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemDCTP.Image")));
- this.buttonItemDCTP.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemDCTP.Name = "buttonItemDCTP";
- this.buttonItemDCTP.SubItemsExpandWidth = 14;
- this.buttonItemDCTP.Text = "导出图片";
- this.buttonItemDCTP.Click += new System.EventHandler(this.buttonItemDCTP_Click);
- //
- // sliderItem3
- //
- this.sliderItem3.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
- this.sliderItem3.LabelWidth = 50;
- this.sliderItem3.Name = "sliderItem3";
- this.sliderItem3.Text = "地面透明度";
- this.sliderItem3.TextColor = System.Drawing.Color.Black;
- this.sliderItem3.Value = 0;
- this.sliderItem3.ValueChanged += new System.EventHandler(this.sliderItem3_ValueChanged);
- //
// ribbonPanel2
//
this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -3115,391 +3410,6 @@
this.buttonItem14.Text = "导出施工图";
this.buttonItem14.Click += new System.EventHandler(this.buttonItem14_Click);
//
- // ribbonPanel12
- //
- this.ribbonPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel12.Controls.Add(this.ribbonBar18);
- this.ribbonPanel12.Controls.Add(this.ribbonBar13);
- this.ribbonPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel12.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel12.Name = "ribbonPanel12";
- this.ribbonPanel12.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel12.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel12.Style.Class = "";
- this.ribbonPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel12.StyleMouseDown.Class = "";
- this.ribbonPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel12.StyleMouseOver.Class = "";
- this.ribbonPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel12.TabIndex = 34;
- //
- // ribbonBar18
- //
- this.ribbonBar18.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar18.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar18.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar18.BackgroundStyle.Class = "";
- this.ribbonBar18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar18.ContainerControlProcessDialogKey = true;
- this.ribbonBar18.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar18.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem133,
- this.buttonItem132});
- this.ribbonBar18.Location = new System.Drawing.Point(508, 0);
- this.ribbonBar18.Name = "ribbonBar18";
- this.ribbonBar18.Size = new System.Drawing.Size(75, 59);
- this.ribbonBar18.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar18.TabIndex = 1;
- //
- //
- //
- this.ribbonBar18.TitleStyle.Class = "";
- this.ribbonBar18.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar18.TitleStyleMouseOver.Class = "";
- this.ribbonBar18.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar18.TitleVisible = false;
- //
- // buttonItem133
- //
- this.buttonItem133.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem133.Image")));
- this.buttonItem133.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem133.Name = "buttonItem133";
- this.buttonItem133.SubItemsExpandWidth = 14;
- this.buttonItem133.Text = "审核入库";
- this.buttonItem133.Click += new System.EventHandler(this.buttonItem133_Click_1);
- //
- // buttonItem132
- //
- this.buttonItem132.Name = "buttonItem132";
- //
- // ribbonBar13
- //
- this.ribbonBar13.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar13.BackgroundStyle.Class = "";
- this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar13.ContainerControlProcessDialogKey = true;
- this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem127,
- this.buttonItem128,
- this.sliderItem1,
- this.buttonItem134,
- this.buttonItem130,
- this.btn_check_history});
- this.ribbonBar13.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar13.Name = "ribbonBar13";
- this.ribbonBar13.Size = new System.Drawing.Size(505, 59);
- this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar13.TabIndex = 0;
- //
- //
- //
- this.ribbonBar13.TitleStyle.Class = "";
- this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar13.TitleStyleMouseOver.Class = "";
- this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar13.TitleVisible = false;
- //
- // buttonItem127
- //
- this.buttonItem127.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem127.Image")));
- this.buttonItem127.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem127.Name = "buttonItem127";
- this.buttonItem127.SubItemsExpandWidth = 14;
- this.buttonItem127.Text = "打开数据";
- this.buttonItem127.Click += new System.EventHandler(this.buttonItem127_Click_2);
- //
- // buttonItem128
- //
- this.buttonItem128.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem128.Image")));
- this.buttonItem128.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem128.Name = "buttonItem128";
- this.buttonItem128.SubItemsExpandWidth = 14;
- this.buttonItem128.Text = "一键审核";
- this.buttonItem128.Click += new System.EventHandler(this.buttonItem128_Click);
- //
- // sliderItem1
- //
- this.sliderItem1.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
- this.sliderItem1.LabelWidth = 50;
- this.sliderItem1.Name = "sliderItem1";
- this.sliderItem1.Text = "地面透明度";
- this.sliderItem1.TextColor = System.Drawing.Color.Black;
- this.sliderItem1.Value = 0;
- this.sliderItem1.ValueChanged += new System.EventHandler(this.sliderItem1_ValueChanged);
- //
- // buttonItem134
- //
- this.buttonItem134.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem134.Image")));
- this.buttonItem134.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem134.Name = "buttonItem134";
- this.buttonItem134.SubItemsExpandWidth = 14;
- this.buttonItem134.Text = "模拟设计修改";
- this.buttonItem134.Click += new System.EventHandler(this.buttonItem134_Click_1);
- //
- // buttonItem130
- //
- this.buttonItem130.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem130.Image")));
- this.buttonItem130.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem130.Name = "buttonItem130";
- this.buttonItem130.SubItemsExpandWidth = 14;
- this.buttonItem130.Text = "导出审核图";
- this.buttonItem130.Click += new System.EventHandler(this.buttonItem130_Click_1);
- //
- // btn_check_history
- //
- this.btn_check_history.Image = ((System.Drawing.Image)(resources.GetObject("btn_check_history.Image")));
- this.btn_check_history.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btn_check_history.Name = "btn_check_history";
- this.btn_check_history.SubItemsExpandWidth = 14;
- this.btn_check_history.Text = "审核历史";
- this.btn_check_history.Click += new System.EventHandler(this.btn_check_history_Click);
- //
- // ribbonPanel4
- //
- this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel4.Controls.Add(this.ribbonBar1);
- this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel4.Location = new System.Drawing.Point(0, 0);
- this.ribbonPanel4.Name = "ribbonPanel4";
- this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel4.Size = new System.Drawing.Size(1328, 95);
- //
- //
- //
- this.ribbonPanel4.Style.Class = "";
- this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel4.StyleMouseDown.Class = "";
- this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel4.StyleMouseOver.Class = "";
- this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel4.TabIndex = 36;
- this.ribbonPanel4.Visible = false;
- //
- // ribbonBar1
- //
- this.ribbonBar1.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar1.BackgroundStyle.Class = "";
- this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar1.ContainerControlProcessDialogKey = true;
- this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btn_document_info});
- this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar1.Name = "ribbonBar1";
- this.ribbonBar1.Size = new System.Drawing.Size(88, 92);
- this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar1.TabIndex = 0;
- //
- //
- //
- this.ribbonBar1.TitleStyle.Class = "";
- this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar1.TitleStyleMouseOver.Class = "";
- this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar1.TitleVisible = false;
- //
- // btn_document_info
- //
- this.btn_document_info.Image = ((System.Drawing.Image)(resources.GetObject("btn_document_info.Image")));
- this.btn_document_info.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btn_document_info.Name = "btn_document_info";
- this.btn_document_info.SubItemsExpandWidth = 14;
- this.btn_document_info.Text = "文档管理";
- this.btn_document_info.Click += new System.EventHandler(this.btn_document_info_Click);
- //
- // ribbonPanel1
- //
- this.ribbonPanel1.AutoSize = true;
- this.ribbonPanel1.CanvasColor = System.Drawing.Color.Gray;
- this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel1.Controls.Add(this.ribbonBar21);
- this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel1.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel1.Name = "ribbonPanel1";
- this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel1.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel1.Style.Class = "";
- this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel1.StyleMouseDown.Class = "";
- this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel1.StyleMouseOver.Class = "";
- this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel1.TabIndex = 1;
- this.ribbonPanel1.Visible = false;
- //
- // ribbonBar21
- //
- this.ribbonBar21.AutoOverflowEnabled = true;
- this.ribbonBar21.BackColor = System.Drawing.Color.White;
- //
- //
- //
- this.ribbonBar21.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar21.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar21.BackgroundStyle.Class = "";
- this.ribbonBar21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar21.ContainerControlProcessDialogKey = true;
- this.ribbonBar21.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar21.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem87,
- this.buttonItem88,
- this.buttonItem27,
- this.sliderGroundTransSet1,
- this.buttonItem91,
- this.buttonItem1,
- this.btnlegendSet,
- this.buttonItem89,
- this.btnOutputJPG});
- this.ribbonBar21.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar21.Name = "ribbonBar21";
- this.ribbonBar21.Size = new System.Drawing.Size(649, 59);
- this.ribbonBar21.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar21.TabIndex = 2;
- this.ribbonBar21.Text = "浏览模式";
- //
- //
- //
- this.ribbonBar21.TitleStyle.Class = "";
- this.ribbonBar21.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar21.TitleStyleMouseOver.Class = "";
- this.ribbonBar21.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar21.TitleVisible = false;
- //
- // buttonItem87
- //
- this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
- this.buttonItem87.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem87.Name = "buttonItem87";
- this.buttonItem87.SubItemsExpandWidth = 14;
- this.buttonItem87.Text = "地上模式";
- this.buttonItem87.Click += new System.EventHandler(this.buttonItem87_Click);
- //
- // buttonItem88
- //
- this.buttonItem88.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem88.Image")));
- this.buttonItem88.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem88.Name = "buttonItem88";
- this.buttonItem88.SubItemsExpandWidth = 14;
- this.buttonItem88.Text = "地下模式";
- this.buttonItem88.Click += new System.EventHandler(this.buttonItem88_Click);
- //
- // buttonItem27
- //
- this.buttonItem27.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
- this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem27.Name = "buttonItem27";
- this.buttonItem27.SubItemsExpandWidth = 14;
- this.buttonItem27.Text = "行走模式";
- this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
- //
- // buttonItem91
- //
- this.buttonItem91.ForeColor = System.Drawing.Color.Black;
- this.buttonItem91.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem91.Image")));
- this.buttonItem91.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem91.Name = "buttonItem91";
- this.buttonItem91.SubItemsExpandWidth = 14;
- this.buttonItem91.Text = "快速定位";
- this.buttonItem91.Click += new System.EventHandler(this.buttonItem91_Click);
- //
- // buttonItem1
- //
- this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
- this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem1.Name = "buttonItem1";
- this.buttonItem1.SubItemsExpandWidth = 14;
- this.buttonItem1.Text = "图层管理";
- this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
- //
- // btnlegendSet
- //
- this.btnlegendSet.Image = ((System.Drawing.Image)(resources.GetObject("btnlegendSet.Image")));
- this.btnlegendSet.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnlegendSet.Name = "btnlegendSet";
- this.btnlegendSet.SubItemsExpandWidth = 14;
- this.btnlegendSet.Text = "图例";
- this.btnlegendSet.Click += new System.EventHandler(this.btnlegendSet_Click);
- //
- // buttonItem89
- //
- this.buttonItem89.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem89.Image")));
- this.buttonItem89.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem89.Name = "buttonItem89";
- this.buttonItem89.SubItemsExpandWidth = 14;
- this.buttonItem89.Text = "全屏显示";
- this.buttonItem89.Click += new System.EventHandler(this.buttonItem89_Click);
- //
- // btnOutputJPG
- //
- this.btnOutputJPG.Image = ((System.Drawing.Image)(resources.GetObject("btnOutputJPG.Image")));
- this.btnOutputJPG.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnOutputJPG.Name = "btnOutputJPG";
- this.btnOutputJPG.SubItemsExpandWidth = 14;
- this.btnOutputJPG.Text = "导出图片";
- this.btnOutputJPG.Click += new System.EventHandler(this.btnOutputJPG_Click);
- //
// ribbonPanel6
//
this.ribbonPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -3611,6 +3521,108 @@
this.buttonItemGBJC.Text = "国标检测";
this.buttonItemGBJC.Click += new System.EventHandler(this.buttonItemGBJC_Click);
//
+ // ribbonPanel5
+ //
+ this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel5.Controls.Add(this.ribbonBar2);
+ this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel5.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel5.Name = "ribbonPanel5";
+ this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel5.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel5.Style.Class = "";
+ this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel5.StyleMouseDown.Class = "";
+ this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel5.StyleMouseOver.Class = "";
+ this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel5.TabIndex = 37;
+ this.ribbonPanel5.Visible = false;
+ //
+ // ribbonBar2
+ //
+ this.ribbonBar2.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar2.BackgroundStyle.Class = "";
+ this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar2.ContainerControlProcessDialogKey = true;
+ this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItemHX1,
+ this.buttonItemHX2,
+ this.buttonItemDCTP,
+ this.sliderItem3});
+ this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar2.Name = "ribbonBar2";
+ this.ribbonBar2.Size = new System.Drawing.Size(350, 59);
+ this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar2.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar2.TitleStyle.Class = "";
+ this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar2.TitleStyleMouseOver.Class = "";
+ this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar2.TitleVisible = false;
+ //
+ // buttonItemHX1
+ //
+ this.buttonItemHX1.AutoExpandOnClick = true;
+ this.buttonItemHX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX1.Image")));
+ this.buttonItemHX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemHX1.Name = "buttonItemHX1";
+ this.buttonItemHX1.SubItemsExpandWidth = 14;
+ this.buttonItemHX1.Text = "导入红线";
+ this.buttonItemHX1.Click += new System.EventHandler(this.buttonItemHX1_Click);
+ //
+ // buttonItemHX2
+ //
+ this.buttonItemHX2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX2.Image")));
+ this.buttonItemHX2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemHX2.Name = "buttonItemHX2";
+ this.buttonItemHX2.SubItemsExpandWidth = 14;
+ this.buttonItemHX2.Text = "红线审核";
+ this.buttonItemHX2.Click += new System.EventHandler(this.buttonItemHX2_Click);
+ //
+ // buttonItemDCTP
+ //
+ this.buttonItemDCTP.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemDCTP.Image")));
+ this.buttonItemDCTP.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemDCTP.Name = "buttonItemDCTP";
+ this.buttonItemDCTP.SubItemsExpandWidth = 14;
+ this.buttonItemDCTP.Text = "导出图片";
+ this.buttonItemDCTP.Click += new System.EventHandler(this.buttonItemDCTP_Click);
+ //
+ // sliderItem3
+ //
+ this.sliderItem3.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
+ this.sliderItem3.LabelWidth = 50;
+ this.sliderItem3.Name = "sliderItem3";
+ this.sliderItem3.Text = "地面透明度";
+ this.sliderItem3.TextColor = System.Drawing.Color.Black;
+ this.sliderItem3.Value = 0;
+ this.sliderItem3.ValueChanged += new System.EventHandler(this.sliderItem3_ValueChanged);
+ //
// ribbonTabItem1
//
this.ribbonTabItem1.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
@@ -4457,7 +4469,7 @@
this.dataGridViewX2.ReadOnly = true;
this.dataGridViewX2.RowHeadersVisible = false;
this.dataGridViewX2.RowTemplate.Height = 23;
- this.dataGridViewX2.Size = new System.Drawing.Size(34645, 92);
+ this.dataGridViewX2.Size = new System.Drawing.Size(34942, 92);
this.dataGridViewX2.TabIndex = 11;
//
// dataGridViewTextBoxColumn10
@@ -4551,7 +4563,7 @@
this.dataGridViewX3.ReadOnly = true;
this.dataGridViewX3.RowHeadersVisible = false;
this.dataGridViewX3.RowTemplate.Height = 23;
- this.dataGridViewX3.Size = new System.Drawing.Size(34644, 127);
+ this.dataGridViewX3.Size = new System.Drawing.Size(34941, 127);
this.dataGridViewX3.TabIndex = 5;
this.dataGridViewX3.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.dataGridViewX3_MouseDoubleClick);
//
@@ -5737,18 +5749,6 @@
this.pictureBox1.TabStop = false;
this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
//
- // layerTree
- //
- this.layerTree.CheckBoxes = true;
- this.layerTree.ItemHeight = 18;
- this.layerTree.Location = new System.Drawing.Point(30, 78);
- this.layerTree.Name = "layerTree";
- this.layerTree.Size = new System.Drawing.Size(121, 97);
- this.layerTree.TabIndex = 1;
- this.layerTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.layerTree_AfterCheck);
- this.layerTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseClick);
- this.layerTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
- //
// MainFrm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
@@ -5791,15 +5791,15 @@
this.contextMenuStripDeleteLayerNode.ResumeLayout(false);
this.ribbonControl1.ResumeLayout(false);
this.ribbonControl1.PerformLayout();
+ this.ribbonPanel12.ResumeLayout(false);
+ this.ribbonPanel1.ResumeLayout(false);
+ this.ribbonPanel4.ResumeLayout(false);
this.ribbonPanel15.ResumeLayout(false);
- this.ribbonPanel5.ResumeLayout(false);
this.ribbonPanel2.ResumeLayout(false);
this.ribbonPanel3.ResumeLayout(false);
this.ribbonPanel7.ResumeLayout(false);
- this.ribbonPanel12.ResumeLayout(false);
- this.ribbonPanel4.ResumeLayout(false);
- this.ribbonPanel1.ResumeLayout(false);
this.ribbonPanel6.ResumeLayout(false);
+ this.ribbonPanel5.ResumeLayout(false);
this.panelOfTable.ResumeLayout(false);
this.panelOfTable.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
diff --git a/bin/x86/Debug/glVersion.txt b/bin/x86/Debug/glVersion.txt
index cd82eca..755455e 100644
--- a/bin/x86/Debug/glVersion.txt
+++ b/bin/x86/Debug/glVersion.txt
Binary files differ
diff --git a/Cyberpipe.suo b/Cyberpipe.suo
index ab59cf3..2ccc843 100644
--- a/Cyberpipe.suo
+++ b/Cyberpipe.suo
Binary files differ
diff --git a/MainFrm.cs b/MainFrm.cs
index 79f72dd..732a3ac 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -1574,11 +1574,13 @@
GSOLayer gsoLayer = e.Node.Tag as GSOLayer;
if (gsoLayer == null || gsoLayer.Caption.Equals(Utility.roadLayerName)) return;
- if (e.Node.Parent.Text.Equals("临时图层") || e.Node.Parent.Text.Equals("我的地标"))
+ if (e.Node.Parent.Text.Equals("临时图层"))//|| e.Node.Parent.Text.Equals("我的地标")
{
//临时图层下的子节点应该展示的
contextMenuStripDeleteLayerNode.Show(layerTree, e.X, e.Y);
contextMenuStripDeleteLayerNode.Tag = e.Node;
+ GSOLayer layer = e.Node.Tag as GSOLayer;
+ 可编辑ToolStripMenuItem.Checked = layer.Editable;//可编辑状态
}
else
{
@@ -5849,13 +5851,18 @@
private void NetworkTraceUpDown(Boolean bTraceUp)
{
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer; ;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
-
NetworkAnalysisTool.TraceUpDownAnalysis(bTraceUp,
selLineFeature, selLayer);
}
@@ -5879,16 +5886,24 @@
///
private void 关阀分析ToolStripMenuItem_Click(object sender, EventArgs e)
{
- if (globeControl1.Globe.SelObjectCount < 1)
- {
- MessageBox.Show("请选中至少一根管线!!");
- 流向分析ToolStripMenuItem.Checked = false;
- return;
- }
+// if (globeControl1.Globe.SelObjectCount < 1)
+// {
+// MessageBox.Show("请选中至少一根管线!!");
+// 流向分析ToolStripMenuItem.Checked = false;
+// return;
+// }
GSOLayer resLayer = null;
GSOFeature resFeature = null;
- globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
-
+
+ if (globeControl1.Globe.SelObjectCount < 1)
+ {
+ resLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ resFeature = resLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
+ }
+ else
+ {
+ globeControl1.Globe.GetSelectObject(0, out resFeature, out resLayer);
+ }
String pipeLayerName = resLayer.Caption;
String pipeLayerNamePrefix = pipeLayerName.Substring(0, pipeLayerName.IndexOf("管线"));
GSOLayer valveLayer = globeControl1.Globe.Layers[pipeLayerNamePrefix + "阀门"];
@@ -5947,12 +5962,18 @@
NetworkTraceUpDown(true); //上游追踪:
GSOFeature selLineFeature = globeControl1.Globe.SelectedObject;
- if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// if (selLineFeature == null || selLineFeature.Geometry == null || selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
+// {
+// MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
+// return;
+// }
+ GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;;
+ if (selLineFeature == null || selLineFeature.Geometry == null ||
+ selLineFeature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
- MessageBox.Show("请点击“编辑”—“选中对象”选择一条线!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- return;
+ selLayer = globeControl1.Globe.Layers.GetLayerByCaption("给水管线");
+ selLineFeature = selLayer.GetFeatureByName("GX_JSL_3000_EY_181", true)[0];
}
- GSOLayer selLayer = globeControl1.Globe.SelectedObjectLayer;
NetworkAnalysisTool.ExplodeAnalysis(globeControl1, selLineFeature, selLayer);
diff --git a/MainFrm.designer.cs b/MainFrm.designer.cs
index f473335..fa30208 100644
--- a/MainFrm.designer.cs
+++ b/MainFrm.designer.cs
@@ -90,6 +90,7 @@
this.sideBar1 = new DevComponents.DotNetBar.SideBar();
this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
this.layerSensorTree = new System.Windows.Forms.TreeView();
+ this.layerTree = new Cyberpipe.MyTreeView();
this.sideBarPanelItem3 = new DevComponents.DotNetBar.SideBarPanelItem();
this.controlContainerItem3 = new DevComponents.DotNetBar.ControlContainerItem();
this.sideBarPanelItem4 = new DevComponents.DotNetBar.SideBarPanelItem();
@@ -244,6 +245,30 @@
this.保存ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.定位ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
+ this.ribbonPanel12 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar18 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem133 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem132 = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem127 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem128 = new DevComponents.DotNetBar.ButtonItem();
+ this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
+ this.buttonItem134 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem130 = new DevComponents.DotNetBar.ButtonItem();
+ this.btn_check_history = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar21 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItem87 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem88 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem91 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
+ this.btnlegendSet = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItem89 = new DevComponents.DotNetBar.ButtonItem();
+ this.btnOutputJPG = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
+ this.btn_document_info = new DevComponents.DotNetBar.ButtonItem();
this.ribbonPanel15 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar20 = new DevComponents.DotNetBar.RibbonBar();
this.buttonItemSH = new DevComponents.DotNetBar.ButtonItem();
@@ -299,12 +324,6 @@
this.buttonItemXT4 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItemXT4_1 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItemXT4_2 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItemHX1 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItemHX2 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItemDCTP = new DevComponents.DotNetBar.ButtonItem();
- this.sliderItem3 = new DevComponents.DotNetBar.SliderItem();
this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
this.btn_user_info = new DevComponents.DotNetBar.ButtonItem();
@@ -326,30 +345,6 @@
this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel12 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar18 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem133 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem132 = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonBar13 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem127 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem128 = new DevComponents.DotNetBar.ButtonItem();
- this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
- this.buttonItem134 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem130 = new DevComponents.DotNetBar.ButtonItem();
- this.btn_check_history = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
- this.btn_document_info = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
- this.ribbonBar21 = new DevComponents.DotNetBar.RibbonBar();
- this.buttonItem87 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem88 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem91 = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
- this.btnlegendSet = new DevComponents.DotNetBar.ButtonItem();
- this.buttonItem89 = new DevComponents.DotNetBar.ButtonItem();
- this.btnOutputJPG = new DevComponents.DotNetBar.ButtonItem();
this.ribbonPanel6 = new DevComponents.DotNetBar.RibbonPanel();
this.ribbonBar6 = new DevComponents.DotNetBar.RibbonBar();
this.buttonItemSPSZ = new DevComponents.DotNetBar.ButtonItem();
@@ -357,6 +352,12 @@
this.buttonItemLocation = new DevComponents.DotNetBar.ButtonItem();
this.sliderItem2 = new DevComponents.DotNetBar.SliderItem();
this.buttonItemGBJC = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel5 = new DevComponents.DotNetBar.RibbonPanel();
+ this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
+ this.buttonItemHX1 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItemHX2 = new DevComponents.DotNetBar.ButtonItem();
+ this.buttonItemDCTP = new DevComponents.DotNetBar.ButtonItem();
+ this.sliderItem3 = new DevComponents.DotNetBar.SliderItem();
this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
this.ribbonTabItem11 = new DevComponents.DotNetBar.RibbonTabItem();
this.ribbonTabItem6 = new DevComponents.DotNetBar.RibbonTabItem();
@@ -518,7 +519,6 @@
this.labelX17 = new DevComponents.DotNetBar.LabelX();
this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.layerTree = new Cyberpipe.MyTreeView();
this.statusStrip1.SuspendLayout();
this.sideBar1.SuspendLayout();
this.panelEx3.SuspendLayout();
@@ -529,15 +529,15 @@
this.contextMenuStrip3.SuspendLayout();
this.contextMenuStripDeleteLayerNode.SuspendLayout();
this.ribbonControl1.SuspendLayout();
+ this.ribbonPanel12.SuspendLayout();
+ this.ribbonPanel1.SuspendLayout();
+ this.ribbonPanel4.SuspendLayout();
this.ribbonPanel15.SuspendLayout();
- this.ribbonPanel5.SuspendLayout();
this.ribbonPanel2.SuspendLayout();
this.ribbonPanel3.SuspendLayout();
this.ribbonPanel7.SuspendLayout();
- this.ribbonPanel12.SuspendLayout();
- this.ribbonPanel4.SuspendLayout();
- this.ribbonPanel1.SuspendLayout();
this.ribbonPanel6.SuspendLayout();
+ this.ribbonPanel5.SuspendLayout();
this.panelOfTable.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
this.statusStrip2.SuspendLayout();
@@ -957,6 +957,18 @@
this.layerSensorTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerMarkerTree_NodeMouseClick);
this.layerSensorTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
//
+ // layerTree
+ //
+ this.layerTree.CheckBoxes = true;
+ this.layerTree.ItemHeight = 18;
+ this.layerTree.Location = new System.Drawing.Point(30, 78);
+ this.layerTree.Name = "layerTree";
+ this.layerTree.Size = new System.Drawing.Size(121, 97);
+ this.layerTree.TabIndex = 1;
+ this.layerTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.layerTree_AfterCheck);
+ this.layerTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseClick);
+ this.layerTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
+ //
// sideBarPanelItem3
//
this.sideBarPanelItem3.FontBold = true;
@@ -1131,7 +1143,7 @@
this.区域分析ToolStripMenuItem,
this.清除分析ToolStripMenuItem});
this.toolRightMenu.Name = "toolRightMenu";
- this.toolRightMenu.Size = new System.Drawing.Size(149, 290);
+ this.toolRightMenu.Size = new System.Drawing.Size(153, 312);
//
// 量算ToolStripMenuItem
//
@@ -1144,7 +1156,7 @@
this.水平面积ToolStripMenuItem1,
this.地表面积ToolStripMenuItem1});
this.量算ToolStripMenuItem.Name = "量算ToolStripMenuItem";
- this.量算ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.量算ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.量算ToolStripMenuItem.Text = "量算";
//
// 水平距离ToolStripMenuItem1
@@ -1207,7 +1219,7 @@
this.前进ToolStripMenuItem,
this.后退ToolStripMenuItem});
this.编辑ToolStripMenuItem.Name = "编辑ToolStripMenuItem";
- this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.编辑ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.编辑ToolStripMenuItem.Text = "编辑";
//
// 平移对象ToolStripMenuItem
@@ -1283,7 +1295,7 @@
this.绕中心点飞行ToolStripMenuItem,
this.绕眼睛飞行ToolStripMenuItem});
this.飞行ToolStripMenuItem.Name = "飞行ToolStripMenuItem";
- this.飞行ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.飞行ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.飞行ToolStripMenuItem.Text = "飞行";
//
// 自定义飞行ToolStripMenuItem
@@ -1328,7 +1340,7 @@
this.属性标注ToolStripMenuItem,
this.标注管理ToolStripMenuItem});
this.标注ToolStripMenuItem.Name = "标注ToolStripMenuItem";
- this.标注ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.标注ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.标注ToolStripMenuItem.Text = "标注";
//
// 标高标注ToolStripMenuItem
@@ -1415,7 +1427,7 @@
this.关联查询ToolStripMenuItem,
this.关键字查询ToolStripMenuItem});
this.查询ToolStripMenuItem.Name = "查询ToolStripMenuItem";
- this.查询ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.查询ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.查询ToolStripMenuItem.Text = "查询";
//
// 空间查询ToolStripMenuItem
@@ -1501,7 +1513,7 @@
this.附属物分类统计ToolStripMenuItem,
this.标识器分类统计ToolStripMenuItem});
this.全区域统计ToolStripMenuItem.Name = "全区域统计ToolStripMenuItem";
- this.全区域统计ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.全区域统计ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.全区域统计ToolStripMenuItem.Text = "全区域统计";
//
// 管线长度统计ToolStripMenuItem
@@ -1580,7 +1592,7 @@
this.附属物分类统计ToolStripMenuItem1,
this.标识器分类统计ToolStripMenuItem1});
this.绘制区域统计ToolStripMenuItem.Name = "绘制区域统计ToolStripMenuItem";
- this.绘制区域统计ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.绘制区域统计ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.绘制区域统计ToolStripMenuItem.Text = "绘制区域统计";
//
// 管线长度统计ToolStripMenuItem1
@@ -1654,7 +1666,7 @@
this.道路断面分析ToolStripMenuItem,
this.基线剖面分析ToolStripMenuItem});
this.断面分析ToolStripMenuItem.Name = "断面分析ToolStripMenuItem";
- this.断面分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.断面分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.断面分析ToolStripMenuItem.Text = "断面分析";
//
// 横断面分析ToolStripMenuItem
@@ -1696,55 +1708,55 @@
this.连通分析ToolStripMenuItem,
this.爆管分析ToolStripMenuItem});
this.拓扑分析ToolStripMenuItem.Name = "拓扑分析ToolStripMenuItem";
- this.拓扑分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.拓扑分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.拓扑分析ToolStripMenuItem.Text = "拓扑分析";
//
// 创建拓扑ToolStripMenuItem
//
this.创建拓扑ToolStripMenuItem.Name = "创建拓扑ToolStripMenuItem";
- this.创建拓扑ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.创建拓扑ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.创建拓扑ToolStripMenuItem.Text = "创建拓扑";
this.创建拓扑ToolStripMenuItem.Click += new System.EventHandler(this.创建拓扑ToolStripMenuItem_Click);
//
// 上游分析ToolStripMenuItem
//
this.上游分析ToolStripMenuItem.Name = "上游分析ToolStripMenuItem";
- this.上游分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.上游分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.上游分析ToolStripMenuItem.Text = "上游分析";
this.上游分析ToolStripMenuItem.Click += new System.EventHandler(this.上游分析ToolStripMenuItem_Click);
//
// 下游分析ToolStripMenuItem
//
this.下游分析ToolStripMenuItem.Name = "下游分析ToolStripMenuItem";
- this.下游分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.下游分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.下游分析ToolStripMenuItem.Text = "下游分析";
this.下游分析ToolStripMenuItem.Click += new System.EventHandler(this.下游分析ToolStripMenuItem_Click);
//
// 流向分析ToolStripMenuItem
//
this.流向分析ToolStripMenuItem.Name = "流向分析ToolStripMenuItem";
- this.流向分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.流向分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.流向分析ToolStripMenuItem.Text = "流向分析";
this.流向分析ToolStripMenuItem.Click += new System.EventHandler(this.流向分析ToolStripMenuItem_Click);
//
// 关阀分析ToolStripMenuItem
//
this.关阀分析ToolStripMenuItem.Name = "关阀分析ToolStripMenuItem";
- this.关阀分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.关阀分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.关阀分析ToolStripMenuItem.Text = "关阀分析";
this.关阀分析ToolStripMenuItem.Click += new System.EventHandler(this.关阀分析ToolStripMenuItem_Click);
//
// 连通分析ToolStripMenuItem
//
this.连通分析ToolStripMenuItem.Name = "连通分析ToolStripMenuItem";
- this.连通分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.连通分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.连通分析ToolStripMenuItem.Text = "连通分析";
this.连通分析ToolStripMenuItem.Click += new System.EventHandler(this.连通分析ToolStripMenuItem_Click);
//
// 爆管分析ToolStripMenuItem
//
this.爆管分析ToolStripMenuItem.Name = "爆管分析ToolStripMenuItem";
- this.爆管分析ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
+ this.爆管分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.爆管分析ToolStripMenuItem.Text = "爆管分析";
this.爆管分析ToolStripMenuItem.Click += new System.EventHandler(this.爆管分析ToolStripMenuItem_Click);
//
@@ -1758,7 +1770,7 @@
this.隐藏隧道ToolStripMenuItem,
this.删除隧道ToolStripMenuItem});
this.开挖分析ToolStripMenuItem.Name = "开挖分析ToolStripMenuItem";
- this.开挖分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.开挖分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.开挖分析ToolStripMenuItem.Text = "开挖分析";
//
// 多边形开挖ToolStripMenuItem
@@ -1810,7 +1822,7 @@
this.可视域分析ToolStripMenuItem,
this.可视包络分析ToolStripMenuItem});
this.视域分析ToolStripMenuItem.Name = "视域分析ToolStripMenuItem";
- this.视域分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.视域分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.视域分析ToolStripMenuItem.Text = "视域分析";
//
// 通视分析ToolStripMenuItem
@@ -1841,7 +1853,7 @@
this.缓冲区分析ToolStripMenuItem,
this.无源淹没分析ToolStripMenuItem});
this.区域分析ToolStripMenuItem.Name = "区域分析ToolStripMenuItem";
- this.区域分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.区域分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.区域分析ToolStripMenuItem.Text = "区域分析";
//
// 附属物分析ToolStripMenuItem
@@ -1868,7 +1880,7 @@
// 清除分析ToolStripMenuItem
//
this.清除分析ToolStripMenuItem.Name = "清除分析ToolStripMenuItem";
- this.清除分析ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
+ this.清除分析ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.清除分析ToolStripMenuItem.Text = "清除分析";
this.清除分析ToolStripMenuItem.Click += new System.EventHandler(this.buttonItemClear_Click);
//
@@ -2201,6 +2213,391 @@
this.ribbonControl1.Text = "ribbonControl1";
this.ribbonControl1.UseCustomizeDialog = false;
//
+ // ribbonPanel12
+ //
+ this.ribbonPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel12.Controls.Add(this.ribbonBar18);
+ this.ribbonPanel12.Controls.Add(this.ribbonBar13);
+ this.ribbonPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel12.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel12.Name = "ribbonPanel12";
+ this.ribbonPanel12.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel12.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel12.Style.Class = "";
+ this.ribbonPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel12.StyleMouseDown.Class = "";
+ this.ribbonPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel12.StyleMouseOver.Class = "";
+ this.ribbonPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel12.TabIndex = 34;
+ //
+ // ribbonBar18
+ //
+ this.ribbonBar18.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar18.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar18.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar18.BackgroundStyle.Class = "";
+ this.ribbonBar18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar18.ContainerControlProcessDialogKey = true;
+ this.ribbonBar18.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar18.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem133,
+ this.buttonItem132});
+ this.ribbonBar18.Location = new System.Drawing.Point(508, 0);
+ this.ribbonBar18.Name = "ribbonBar18";
+ this.ribbonBar18.Size = new System.Drawing.Size(75, 59);
+ this.ribbonBar18.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar18.TabIndex = 1;
+ //
+ //
+ //
+ this.ribbonBar18.TitleStyle.Class = "";
+ this.ribbonBar18.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar18.TitleStyleMouseOver.Class = "";
+ this.ribbonBar18.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar18.TitleVisible = false;
+ //
+ // buttonItem133
+ //
+ this.buttonItem133.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem133.Image")));
+ this.buttonItem133.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem133.Name = "buttonItem133";
+ this.buttonItem133.SubItemsExpandWidth = 14;
+ this.buttonItem133.Text = "审核入库";
+ this.buttonItem133.Click += new System.EventHandler(this.buttonItem133_Click_1);
+ //
+ // buttonItem132
+ //
+ this.buttonItem132.Name = "buttonItem132";
+ //
+ // ribbonBar13
+ //
+ this.ribbonBar13.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar13.BackgroundStyle.Class = "";
+ this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar13.ContainerControlProcessDialogKey = true;
+ this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem127,
+ this.buttonItem128,
+ this.sliderItem1,
+ this.buttonItem134,
+ this.buttonItem130,
+ this.btn_check_history});
+ this.ribbonBar13.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar13.Name = "ribbonBar13";
+ this.ribbonBar13.Size = new System.Drawing.Size(505, 59);
+ this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar13.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar13.TitleStyle.Class = "";
+ this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar13.TitleStyleMouseOver.Class = "";
+ this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar13.TitleVisible = false;
+ //
+ // buttonItem127
+ //
+ this.buttonItem127.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem127.Image")));
+ this.buttonItem127.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem127.Name = "buttonItem127";
+ this.buttonItem127.SubItemsExpandWidth = 14;
+ this.buttonItem127.Text = "打开数据";
+ this.buttonItem127.Click += new System.EventHandler(this.buttonItem127_Click_2);
+ //
+ // buttonItem128
+ //
+ this.buttonItem128.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem128.Image")));
+ this.buttonItem128.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem128.Name = "buttonItem128";
+ this.buttonItem128.SubItemsExpandWidth = 14;
+ this.buttonItem128.Text = "一键审核";
+ this.buttonItem128.Click += new System.EventHandler(this.buttonItem128_Click);
+ //
+ // sliderItem1
+ //
+ this.sliderItem1.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
+ this.sliderItem1.LabelWidth = 50;
+ this.sliderItem1.Name = "sliderItem1";
+ this.sliderItem1.Text = "地面透明度";
+ this.sliderItem1.TextColor = System.Drawing.Color.Black;
+ this.sliderItem1.Value = 0;
+ this.sliderItem1.ValueChanged += new System.EventHandler(this.sliderItem1_ValueChanged);
+ //
+ // buttonItem134
+ //
+ this.buttonItem134.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem134.Image")));
+ this.buttonItem134.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem134.Name = "buttonItem134";
+ this.buttonItem134.SubItemsExpandWidth = 14;
+ this.buttonItem134.Text = "模拟设计修改";
+ this.buttonItem134.Click += new System.EventHandler(this.buttonItem134_Click_1);
+ //
+ // buttonItem130
+ //
+ this.buttonItem130.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem130.Image")));
+ this.buttonItem130.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem130.Name = "buttonItem130";
+ this.buttonItem130.SubItemsExpandWidth = 14;
+ this.buttonItem130.Text = "导出审核图";
+ this.buttonItem130.Click += new System.EventHandler(this.buttonItem130_Click_1);
+ //
+ // btn_check_history
+ //
+ this.btn_check_history.Image = ((System.Drawing.Image)(resources.GetObject("btn_check_history.Image")));
+ this.btn_check_history.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btn_check_history.Name = "btn_check_history";
+ this.btn_check_history.SubItemsExpandWidth = 14;
+ this.btn_check_history.Text = "审核历史";
+ this.btn_check_history.Click += new System.EventHandler(this.btn_check_history_Click);
+ //
+ // ribbonPanel1
+ //
+ this.ribbonPanel1.AutoSize = true;
+ this.ribbonPanel1.CanvasColor = System.Drawing.Color.Gray;
+ this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel1.Controls.Add(this.ribbonBar21);
+ this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel1.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel1.Name = "ribbonPanel1";
+ this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel1.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel1.Style.Class = "";
+ this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel1.StyleMouseDown.Class = "";
+ this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel1.StyleMouseOver.Class = "";
+ this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel1.TabIndex = 1;
+ this.ribbonPanel1.Visible = false;
+ //
+ // ribbonBar21
+ //
+ this.ribbonBar21.AutoOverflowEnabled = true;
+ this.ribbonBar21.BackColor = System.Drawing.Color.White;
+ //
+ //
+ //
+ this.ribbonBar21.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar21.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar21.BackgroundStyle.Class = "";
+ this.ribbonBar21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar21.ContainerControlProcessDialogKey = true;
+ this.ribbonBar21.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar21.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem87,
+ this.buttonItem88,
+ this.buttonItem27,
+ this.sliderGroundTransSet1,
+ this.buttonItem91,
+ this.buttonItem1,
+ this.btnlegendSet,
+ this.buttonItem89,
+ this.btnOutputJPG});
+ this.ribbonBar21.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar21.Name = "ribbonBar21";
+ this.ribbonBar21.Size = new System.Drawing.Size(649, 59);
+ this.ribbonBar21.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar21.TabIndex = 2;
+ this.ribbonBar21.Text = "浏览模式";
+ //
+ //
+ //
+ this.ribbonBar21.TitleStyle.Class = "";
+ this.ribbonBar21.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar21.TitleStyleMouseOver.Class = "";
+ this.ribbonBar21.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar21.TitleVisible = false;
+ //
+ // buttonItem87
+ //
+ this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
+ this.buttonItem87.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem87.Name = "buttonItem87";
+ this.buttonItem87.SubItemsExpandWidth = 14;
+ this.buttonItem87.Text = "地上模式";
+ this.buttonItem87.Click += new System.EventHandler(this.buttonItem87_Click);
+ //
+ // buttonItem88
+ //
+ this.buttonItem88.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem88.Image")));
+ this.buttonItem88.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem88.Name = "buttonItem88";
+ this.buttonItem88.SubItemsExpandWidth = 14;
+ this.buttonItem88.Text = "地下模式";
+ this.buttonItem88.Click += new System.EventHandler(this.buttonItem88_Click);
+ //
+ // buttonItem27
+ //
+ this.buttonItem27.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
+ this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem27.Name = "buttonItem27";
+ this.buttonItem27.SubItemsExpandWidth = 14;
+ this.buttonItem27.Text = "行走模式";
+ this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
+ //
+ // buttonItem91
+ //
+ this.buttonItem91.ForeColor = System.Drawing.Color.Black;
+ this.buttonItem91.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem91.Image")));
+ this.buttonItem91.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem91.Name = "buttonItem91";
+ this.buttonItem91.SubItemsExpandWidth = 14;
+ this.buttonItem91.Text = "快速定位";
+ this.buttonItem91.Click += new System.EventHandler(this.buttonItem91_Click);
+ //
+ // buttonItem1
+ //
+ this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
+ this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem1.Name = "buttonItem1";
+ this.buttonItem1.SubItemsExpandWidth = 14;
+ this.buttonItem1.Text = "图层管理";
+ this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
+ //
+ // btnlegendSet
+ //
+ this.btnlegendSet.Image = ((System.Drawing.Image)(resources.GetObject("btnlegendSet.Image")));
+ this.btnlegendSet.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnlegendSet.Name = "btnlegendSet";
+ this.btnlegendSet.SubItemsExpandWidth = 14;
+ this.btnlegendSet.Text = "图例";
+ this.btnlegendSet.Click += new System.EventHandler(this.btnlegendSet_Click);
+ //
+ // buttonItem89
+ //
+ this.buttonItem89.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem89.Image")));
+ this.buttonItem89.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItem89.Name = "buttonItem89";
+ this.buttonItem89.SubItemsExpandWidth = 14;
+ this.buttonItem89.Text = "全屏显示";
+ this.buttonItem89.Click += new System.EventHandler(this.buttonItem89_Click);
+ //
+ // btnOutputJPG
+ //
+ this.btnOutputJPG.Image = ((System.Drawing.Image)(resources.GetObject("btnOutputJPG.Image")));
+ this.btnOutputJPG.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnOutputJPG.Name = "btnOutputJPG";
+ this.btnOutputJPG.SubItemsExpandWidth = 14;
+ this.btnOutputJPG.Text = "导出图片";
+ this.btnOutputJPG.Click += new System.EventHandler(this.btnOutputJPG_Click);
+ //
+ // ribbonPanel4
+ //
+ this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel4.Controls.Add(this.ribbonBar1);
+ this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel4.Location = new System.Drawing.Point(0, 0);
+ this.ribbonPanel4.Name = "ribbonPanel4";
+ this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel4.Size = new System.Drawing.Size(1328, 95);
+ //
+ //
+ //
+ this.ribbonPanel4.Style.Class = "";
+ this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel4.StyleMouseDown.Class = "";
+ this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel4.StyleMouseOver.Class = "";
+ this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel4.TabIndex = 36;
+ this.ribbonPanel4.Visible = false;
+ //
+ // ribbonBar1
+ //
+ this.ribbonBar1.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar1.BackgroundStyle.Class = "";
+ this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar1.ContainerControlProcessDialogKey = true;
+ this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btn_document_info});
+ this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar1.Name = "ribbonBar1";
+ this.ribbonBar1.Size = new System.Drawing.Size(88, 92);
+ this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar1.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar1.TitleStyle.Class = "";
+ this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar1.TitleStyleMouseOver.Class = "";
+ this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar1.TitleVisible = false;
+ //
+ // btn_document_info
+ //
+ this.btn_document_info.Image = ((System.Drawing.Image)(resources.GetObject("btn_document_info.Image")));
+ this.btn_document_info.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btn_document_info.Name = "btn_document_info";
+ this.btn_document_info.SubItemsExpandWidth = 14;
+ this.btn_document_info.Text = "文档管理";
+ this.btn_document_info.Click += new System.EventHandler(this.btn_document_info_Click);
+ //
// ribbonPanel15
//
this.ribbonPanel15.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -2681,108 +3078,6 @@
this.buttonItemXT4_2.Text = "人员修改";
this.buttonItemXT4_2.Click += new System.EventHandler(this.buttonItemXT4_2_Click);
//
- // ribbonPanel5
- //
- this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel5.Controls.Add(this.ribbonBar2);
- this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel5.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel5.Name = "ribbonPanel5";
- this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel5.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel5.Style.Class = "";
- this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel5.StyleMouseDown.Class = "";
- this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel5.StyleMouseOver.Class = "";
- this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel5.TabIndex = 37;
- this.ribbonPanel5.Visible = false;
- //
- // ribbonBar2
- //
- this.ribbonBar2.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar2.BackgroundStyle.Class = "";
- this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar2.ContainerControlProcessDialogKey = true;
- this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItemHX1,
- this.buttonItemHX2,
- this.buttonItemDCTP,
- this.sliderItem3});
- this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar2.Name = "ribbonBar2";
- this.ribbonBar2.Size = new System.Drawing.Size(350, 59);
- this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar2.TabIndex = 0;
- //
- //
- //
- this.ribbonBar2.TitleStyle.Class = "";
- this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar2.TitleStyleMouseOver.Class = "";
- this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar2.TitleVisible = false;
- //
- // buttonItemHX1
- //
- this.buttonItemHX1.AutoExpandOnClick = true;
- this.buttonItemHX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX1.Image")));
- this.buttonItemHX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemHX1.Name = "buttonItemHX1";
- this.buttonItemHX1.SubItemsExpandWidth = 14;
- this.buttonItemHX1.Text = "导入红线";
- this.buttonItemHX1.Click += new System.EventHandler(this.buttonItemHX1_Click);
- //
- // buttonItemHX2
- //
- this.buttonItemHX2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX2.Image")));
- this.buttonItemHX2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemHX2.Name = "buttonItemHX2";
- this.buttonItemHX2.SubItemsExpandWidth = 14;
- this.buttonItemHX2.Text = "红线审核";
- this.buttonItemHX2.Click += new System.EventHandler(this.buttonItemHX2_Click);
- //
- // buttonItemDCTP
- //
- this.buttonItemDCTP.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemDCTP.Image")));
- this.buttonItemDCTP.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItemDCTP.Name = "buttonItemDCTP";
- this.buttonItemDCTP.SubItemsExpandWidth = 14;
- this.buttonItemDCTP.Text = "导出图片";
- this.buttonItemDCTP.Click += new System.EventHandler(this.buttonItemDCTP_Click);
- //
- // sliderItem3
- //
- this.sliderItem3.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
- this.sliderItem3.LabelWidth = 50;
- this.sliderItem3.Name = "sliderItem3";
- this.sliderItem3.Text = "地面透明度";
- this.sliderItem3.TextColor = System.Drawing.Color.Black;
- this.sliderItem3.Value = 0;
- this.sliderItem3.ValueChanged += new System.EventHandler(this.sliderItem3_ValueChanged);
- //
// ribbonPanel2
//
this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -3115,391 +3410,6 @@
this.buttonItem14.Text = "导出施工图";
this.buttonItem14.Click += new System.EventHandler(this.buttonItem14_Click);
//
- // ribbonPanel12
- //
- this.ribbonPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel12.Controls.Add(this.ribbonBar18);
- this.ribbonPanel12.Controls.Add(this.ribbonBar13);
- this.ribbonPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel12.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel12.Name = "ribbonPanel12";
- this.ribbonPanel12.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel12.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel12.Style.Class = "";
- this.ribbonPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel12.StyleMouseDown.Class = "";
- this.ribbonPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel12.StyleMouseOver.Class = "";
- this.ribbonPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel12.TabIndex = 34;
- //
- // ribbonBar18
- //
- this.ribbonBar18.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar18.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar18.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar18.BackgroundStyle.Class = "";
- this.ribbonBar18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar18.ContainerControlProcessDialogKey = true;
- this.ribbonBar18.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar18.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem133,
- this.buttonItem132});
- this.ribbonBar18.Location = new System.Drawing.Point(508, 0);
- this.ribbonBar18.Name = "ribbonBar18";
- this.ribbonBar18.Size = new System.Drawing.Size(75, 59);
- this.ribbonBar18.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar18.TabIndex = 1;
- //
- //
- //
- this.ribbonBar18.TitleStyle.Class = "";
- this.ribbonBar18.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar18.TitleStyleMouseOver.Class = "";
- this.ribbonBar18.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar18.TitleVisible = false;
- //
- // buttonItem133
- //
- this.buttonItem133.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem133.Image")));
- this.buttonItem133.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem133.Name = "buttonItem133";
- this.buttonItem133.SubItemsExpandWidth = 14;
- this.buttonItem133.Text = "审核入库";
- this.buttonItem133.Click += new System.EventHandler(this.buttonItem133_Click_1);
- //
- // buttonItem132
- //
- this.buttonItem132.Name = "buttonItem132";
- //
- // ribbonBar13
- //
- this.ribbonBar13.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar13.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar13.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar13.BackgroundStyle.Class = "";
- this.ribbonBar13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar13.ContainerControlProcessDialogKey = true;
- this.ribbonBar13.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar13.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem127,
- this.buttonItem128,
- this.sliderItem1,
- this.buttonItem134,
- this.buttonItem130,
- this.btn_check_history});
- this.ribbonBar13.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar13.Name = "ribbonBar13";
- this.ribbonBar13.Size = new System.Drawing.Size(505, 59);
- this.ribbonBar13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar13.TabIndex = 0;
- //
- //
- //
- this.ribbonBar13.TitleStyle.Class = "";
- this.ribbonBar13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar13.TitleStyleMouseOver.Class = "";
- this.ribbonBar13.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar13.TitleVisible = false;
- //
- // buttonItem127
- //
- this.buttonItem127.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem127.Image")));
- this.buttonItem127.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem127.Name = "buttonItem127";
- this.buttonItem127.SubItemsExpandWidth = 14;
- this.buttonItem127.Text = "打开数据";
- this.buttonItem127.Click += new System.EventHandler(this.buttonItem127_Click_2);
- //
- // buttonItem128
- //
- this.buttonItem128.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem128.Image")));
- this.buttonItem128.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem128.Name = "buttonItem128";
- this.buttonItem128.SubItemsExpandWidth = 14;
- this.buttonItem128.Text = "一键审核";
- this.buttonItem128.Click += new System.EventHandler(this.buttonItem128_Click);
- //
- // sliderItem1
- //
- this.sliderItem1.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
- this.sliderItem1.LabelWidth = 50;
- this.sliderItem1.Name = "sliderItem1";
- this.sliderItem1.Text = "地面透明度";
- this.sliderItem1.TextColor = System.Drawing.Color.Black;
- this.sliderItem1.Value = 0;
- this.sliderItem1.ValueChanged += new System.EventHandler(this.sliderItem1_ValueChanged);
- //
- // buttonItem134
- //
- this.buttonItem134.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem134.Image")));
- this.buttonItem134.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem134.Name = "buttonItem134";
- this.buttonItem134.SubItemsExpandWidth = 14;
- this.buttonItem134.Text = "模拟设计修改";
- this.buttonItem134.Click += new System.EventHandler(this.buttonItem134_Click_1);
- //
- // buttonItem130
- //
- this.buttonItem130.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem130.Image")));
- this.buttonItem130.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem130.Name = "buttonItem130";
- this.buttonItem130.SubItemsExpandWidth = 14;
- this.buttonItem130.Text = "导出审核图";
- this.buttonItem130.Click += new System.EventHandler(this.buttonItem130_Click_1);
- //
- // btn_check_history
- //
- this.btn_check_history.Image = ((System.Drawing.Image)(resources.GetObject("btn_check_history.Image")));
- this.btn_check_history.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btn_check_history.Name = "btn_check_history";
- this.btn_check_history.SubItemsExpandWidth = 14;
- this.btn_check_history.Text = "审核历史";
- this.btn_check_history.Click += new System.EventHandler(this.btn_check_history_Click);
- //
- // ribbonPanel4
- //
- this.ribbonPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel4.Controls.Add(this.ribbonBar1);
- this.ribbonPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel4.Location = new System.Drawing.Point(0, 0);
- this.ribbonPanel4.Name = "ribbonPanel4";
- this.ribbonPanel4.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel4.Size = new System.Drawing.Size(1328, 95);
- //
- //
- //
- this.ribbonPanel4.Style.Class = "";
- this.ribbonPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel4.StyleMouseDown.Class = "";
- this.ribbonPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel4.StyleMouseOver.Class = "";
- this.ribbonPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel4.TabIndex = 36;
- this.ribbonPanel4.Visible = false;
- //
- // ribbonBar1
- //
- this.ribbonBar1.AutoOverflowEnabled = true;
- //
- //
- //
- this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar1.BackgroundStyle.Class = "";
- this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar1.ContainerControlProcessDialogKey = true;
- this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btn_document_info});
- this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar1.Name = "ribbonBar1";
- this.ribbonBar1.Size = new System.Drawing.Size(88, 92);
- this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar1.TabIndex = 0;
- //
- //
- //
- this.ribbonBar1.TitleStyle.Class = "";
- this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar1.TitleStyleMouseOver.Class = "";
- this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar1.TitleVisible = false;
- //
- // btn_document_info
- //
- this.btn_document_info.Image = ((System.Drawing.Image)(resources.GetObject("btn_document_info.Image")));
- this.btn_document_info.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btn_document_info.Name = "btn_document_info";
- this.btn_document_info.SubItemsExpandWidth = 14;
- this.btn_document_info.Text = "文档管理";
- this.btn_document_info.Click += new System.EventHandler(this.btn_document_info_Click);
- //
- // ribbonPanel1
- //
- this.ribbonPanel1.AutoSize = true;
- this.ribbonPanel1.CanvasColor = System.Drawing.Color.Gray;
- this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonPanel1.Controls.Add(this.ribbonBar21);
- this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel1.Location = new System.Drawing.Point(0, 33);
- this.ribbonPanel1.Name = "ribbonPanel1";
- this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel1.Size = new System.Drawing.Size(1328, 62);
- //
- //
- //
- this.ribbonPanel1.Style.Class = "";
- this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel1.StyleMouseDown.Class = "";
- this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonPanel1.StyleMouseOver.Class = "";
- this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonPanel1.TabIndex = 1;
- this.ribbonPanel1.Visible = false;
- //
- // ribbonBar21
- //
- this.ribbonBar21.AutoOverflowEnabled = true;
- this.ribbonBar21.BackColor = System.Drawing.Color.White;
- //
- //
- //
- this.ribbonBar21.BackgroundMouseOverStyle.Class = "";
- this.ribbonBar21.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar21.BackgroundStyle.Class = "";
- this.ribbonBar21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar21.ContainerControlProcessDialogKey = true;
- this.ribbonBar21.Dock = System.Windows.Forms.DockStyle.Left;
- this.ribbonBar21.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem87,
- this.buttonItem88,
- this.buttonItem27,
- this.sliderGroundTransSet1,
- this.buttonItem91,
- this.buttonItem1,
- this.btnlegendSet,
- this.buttonItem89,
- this.btnOutputJPG});
- this.ribbonBar21.Location = new System.Drawing.Point(3, 0);
- this.ribbonBar21.Name = "ribbonBar21";
- this.ribbonBar21.Size = new System.Drawing.Size(649, 59);
- this.ribbonBar21.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.ribbonBar21.TabIndex = 2;
- this.ribbonBar21.Text = "浏览模式";
- //
- //
- //
- this.ribbonBar21.TitleStyle.Class = "";
- this.ribbonBar21.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- //
- //
- //
- this.ribbonBar21.TitleStyleMouseOver.Class = "";
- this.ribbonBar21.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ribbonBar21.TitleVisible = false;
- //
- // buttonItem87
- //
- this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
- this.buttonItem87.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem87.Name = "buttonItem87";
- this.buttonItem87.SubItemsExpandWidth = 14;
- this.buttonItem87.Text = "地上模式";
- this.buttonItem87.Click += new System.EventHandler(this.buttonItem87_Click);
- //
- // buttonItem88
- //
- this.buttonItem88.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem88.Image")));
- this.buttonItem88.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem88.Name = "buttonItem88";
- this.buttonItem88.SubItemsExpandWidth = 14;
- this.buttonItem88.Text = "地下模式";
- this.buttonItem88.Click += new System.EventHandler(this.buttonItem88_Click);
- //
- // buttonItem27
- //
- this.buttonItem27.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
- this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem27.Name = "buttonItem27";
- this.buttonItem27.SubItemsExpandWidth = 14;
- this.buttonItem27.Text = "行走模式";
- this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
- //
- // buttonItem91
- //
- this.buttonItem91.ForeColor = System.Drawing.Color.Black;
- this.buttonItem91.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem91.Image")));
- this.buttonItem91.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem91.Name = "buttonItem91";
- this.buttonItem91.SubItemsExpandWidth = 14;
- this.buttonItem91.Text = "快速定位";
- this.buttonItem91.Click += new System.EventHandler(this.buttonItem91_Click);
- //
- // buttonItem1
- //
- this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
- this.buttonItem1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem1.Name = "buttonItem1";
- this.buttonItem1.SubItemsExpandWidth = 14;
- this.buttonItem1.Text = "图层管理";
- this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
- //
- // btnlegendSet
- //
- this.btnlegendSet.Image = ((System.Drawing.Image)(resources.GetObject("btnlegendSet.Image")));
- this.btnlegendSet.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnlegendSet.Name = "btnlegendSet";
- this.btnlegendSet.SubItemsExpandWidth = 14;
- this.btnlegendSet.Text = "图例";
- this.btnlegendSet.Click += new System.EventHandler(this.btnlegendSet_Click);
- //
- // buttonItem89
- //
- this.buttonItem89.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem89.Image")));
- this.buttonItem89.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.buttonItem89.Name = "buttonItem89";
- this.buttonItem89.SubItemsExpandWidth = 14;
- this.buttonItem89.Text = "全屏显示";
- this.buttonItem89.Click += new System.EventHandler(this.buttonItem89_Click);
- //
- // btnOutputJPG
- //
- this.btnOutputJPG.Image = ((System.Drawing.Image)(resources.GetObject("btnOutputJPG.Image")));
- this.btnOutputJPG.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnOutputJPG.Name = "btnOutputJPG";
- this.btnOutputJPG.SubItemsExpandWidth = 14;
- this.btnOutputJPG.Text = "导出图片";
- this.btnOutputJPG.Click += new System.EventHandler(this.btnOutputJPG_Click);
- //
// ribbonPanel6
//
this.ribbonPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
@@ -3611,6 +3521,108 @@
this.buttonItemGBJC.Text = "国标检测";
this.buttonItemGBJC.Click += new System.EventHandler(this.buttonItemGBJC_Click);
//
+ // ribbonPanel5
+ //
+ this.ribbonPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonPanel5.Controls.Add(this.ribbonBar2);
+ this.ribbonPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel5.Location = new System.Drawing.Point(0, 33);
+ this.ribbonPanel5.Name = "ribbonPanel5";
+ this.ribbonPanel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel5.Size = new System.Drawing.Size(1328, 62);
+ //
+ //
+ //
+ this.ribbonPanel5.Style.Class = "";
+ this.ribbonPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel5.StyleMouseDown.Class = "";
+ this.ribbonPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonPanel5.StyleMouseOver.Class = "";
+ this.ribbonPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonPanel5.TabIndex = 37;
+ this.ribbonPanel5.Visible = false;
+ //
+ // ribbonBar2
+ //
+ this.ribbonBar2.AutoOverflowEnabled = true;
+ //
+ //
+ //
+ this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
+ this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar2.BackgroundStyle.Class = "";
+ this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar2.ContainerControlProcessDialogKey = true;
+ this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
+ this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItemHX1,
+ this.buttonItemHX2,
+ this.buttonItemDCTP,
+ this.sliderItem3});
+ this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
+ this.ribbonBar2.Name = "ribbonBar2";
+ this.ribbonBar2.Size = new System.Drawing.Size(350, 59);
+ this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.ribbonBar2.TabIndex = 0;
+ //
+ //
+ //
+ this.ribbonBar2.TitleStyle.Class = "";
+ this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ //
+ //
+ //
+ this.ribbonBar2.TitleStyleMouseOver.Class = "";
+ this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.ribbonBar2.TitleVisible = false;
+ //
+ // buttonItemHX1
+ //
+ this.buttonItemHX1.AutoExpandOnClick = true;
+ this.buttonItemHX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX1.Image")));
+ this.buttonItemHX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemHX1.Name = "buttonItemHX1";
+ this.buttonItemHX1.SubItemsExpandWidth = 14;
+ this.buttonItemHX1.Text = "导入红线";
+ this.buttonItemHX1.Click += new System.EventHandler(this.buttonItemHX1_Click);
+ //
+ // buttonItemHX2
+ //
+ this.buttonItemHX2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemHX2.Image")));
+ this.buttonItemHX2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemHX2.Name = "buttonItemHX2";
+ this.buttonItemHX2.SubItemsExpandWidth = 14;
+ this.buttonItemHX2.Text = "红线审核";
+ this.buttonItemHX2.Click += new System.EventHandler(this.buttonItemHX2_Click);
+ //
+ // buttonItemDCTP
+ //
+ this.buttonItemDCTP.Image = ((System.Drawing.Image)(resources.GetObject("buttonItemDCTP.Image")));
+ this.buttonItemDCTP.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.buttonItemDCTP.Name = "buttonItemDCTP";
+ this.buttonItemDCTP.SubItemsExpandWidth = 14;
+ this.buttonItemDCTP.Text = "导出图片";
+ this.buttonItemDCTP.Click += new System.EventHandler(this.buttonItemDCTP_Click);
+ //
+ // sliderItem3
+ //
+ this.sliderItem3.LabelPosition = DevComponents.DotNetBar.eSliderLabelPosition.Top;
+ this.sliderItem3.LabelWidth = 50;
+ this.sliderItem3.Name = "sliderItem3";
+ this.sliderItem3.Text = "地面透明度";
+ this.sliderItem3.TextColor = System.Drawing.Color.Black;
+ this.sliderItem3.Value = 0;
+ this.sliderItem3.ValueChanged += new System.EventHandler(this.sliderItem3_ValueChanged);
+ //
// ribbonTabItem1
//
this.ribbonTabItem1.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
@@ -4457,7 +4469,7 @@
this.dataGridViewX2.ReadOnly = true;
this.dataGridViewX2.RowHeadersVisible = false;
this.dataGridViewX2.RowTemplate.Height = 23;
- this.dataGridViewX2.Size = new System.Drawing.Size(34645, 92);
+ this.dataGridViewX2.Size = new System.Drawing.Size(34942, 92);
this.dataGridViewX2.TabIndex = 11;
//
// dataGridViewTextBoxColumn10
@@ -4551,7 +4563,7 @@
this.dataGridViewX3.ReadOnly = true;
this.dataGridViewX3.RowHeadersVisible = false;
this.dataGridViewX3.RowTemplate.Height = 23;
- this.dataGridViewX3.Size = new System.Drawing.Size(34644, 127);
+ this.dataGridViewX3.Size = new System.Drawing.Size(34941, 127);
this.dataGridViewX3.TabIndex = 5;
this.dataGridViewX3.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.dataGridViewX3_MouseDoubleClick);
//
@@ -5737,18 +5749,6 @@
this.pictureBox1.TabStop = false;
this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
//
- // layerTree
- //
- this.layerTree.CheckBoxes = true;
- this.layerTree.ItemHeight = 18;
- this.layerTree.Location = new System.Drawing.Point(30, 78);
- this.layerTree.Name = "layerTree";
- this.layerTree.Size = new System.Drawing.Size(121, 97);
- this.layerTree.TabIndex = 1;
- this.layerTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.layerTree_AfterCheck);
- this.layerTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseClick);
- this.layerTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.layerTree_NodeMouseDoubleClick);
- //
// MainFrm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
@@ -5791,15 +5791,15 @@
this.contextMenuStripDeleteLayerNode.ResumeLayout(false);
this.ribbonControl1.ResumeLayout(false);
this.ribbonControl1.PerformLayout();
+ this.ribbonPanel12.ResumeLayout(false);
+ this.ribbonPanel1.ResumeLayout(false);
+ this.ribbonPanel4.ResumeLayout(false);
this.ribbonPanel15.ResumeLayout(false);
- this.ribbonPanel5.ResumeLayout(false);
this.ribbonPanel2.ResumeLayout(false);
this.ribbonPanel3.ResumeLayout(false);
this.ribbonPanel7.ResumeLayout(false);
- this.ribbonPanel12.ResumeLayout(false);
- this.ribbonPanel4.ResumeLayout(false);
- this.ribbonPanel1.ResumeLayout(false);
this.ribbonPanel6.ResumeLayout(false);
+ this.ribbonPanel5.ResumeLayout(false);
this.panelOfTable.ResumeLayout(false);
this.panelOfTable.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
diff --git a/bin/x86/Debug/glVersion.txt b/bin/x86/Debug/glVersion.txt
index cd82eca..755455e 100644
--- a/bin/x86/Debug/glVersion.txt
+++ b/bin/x86/Debug/glVersion.txt
Binary files differ
diff --git a/bin/x86/Debug/log.txt b/bin/x86/Debug/log.txt
index e059c2e..762c735 100644
--- a/bin/x86/Debug/log.txt
+++ b/bin/x86/Debug/log.txt
@@ -599,3 +599,195 @@
exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:02:25---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:02:29---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:03:14---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:04:48---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:06:04---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:06:06---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:06:07---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:06:07---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:09:12---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:09:13---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:09:13---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2016/12/16 9:09:14---------------------
+
+
+
+ e.Message:未将对象引用设置到对象的实例。
+
+ e.Source:Cyberpipe
+
+ e.TargetSite:Void saveLog(System.String, System.String)
+
+ e.StackTrace: 在 Cyberpipe.LogManager.saveLog(String username, String operation) 位置 E:\wxl\work\GHFX_REFACTOR\LogManager.cs:行号 22
+
+
+
+ exception over ------------------------------------------------------------