diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/bin/x64/Debug/1111.txt b/bin/x64/Debug/1111.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/bin/x64/Debug/1111.txt
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/bin/x64/Debug/1111.txt b/bin/x64/Debug/1111.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/bin/x64/Debug/1111.txt
diff --git a/bin/x64/Debug/databaseConfigOracle.xml b/bin/x64/Debug/databaseConfigOracle.xml
index 6a4e220..7e48b08 100644
--- a/bin/x64/Debug/databaseConfigOracle.xml
+++ b/bin/x64/Debug/databaseConfigOracle.xml
@@ -2,7 +2,7 @@
True
192.168.0.203
- szhtdb
- huoshaoshan
- huoshaoshan
+ szhtdb2
+ release
+ release
\ No newline at end of file
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/bin/x64/Debug/1111.txt b/bin/x64/Debug/1111.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/bin/x64/Debug/1111.txt
diff --git a/bin/x64/Debug/databaseConfigOracle.xml b/bin/x64/Debug/databaseConfigOracle.xml
index 6a4e220..7e48b08 100644
--- a/bin/x64/Debug/databaseConfigOracle.xml
+++ b/bin/x64/Debug/databaseConfigOracle.xml
@@ -2,7 +2,7 @@
True
192.168.0.203
- szhtdb
- huoshaoshan
- huoshaoshan
+ szhtdb2
+ release
+ release
\ No newline at end of file
diff --git a/bin/x64/Debug/glVersion.txt b/bin/x64/Debug/glVersion.txt
index bf6579a..cd750a2 100644
--- a/bin/x64/Debug/glVersion.txt
+++ b/bin/x64/Debug/glVersion.txt
Binary files differ
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/bin/x64/Debug/1111.txt b/bin/x64/Debug/1111.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/bin/x64/Debug/1111.txt
diff --git a/bin/x64/Debug/databaseConfigOracle.xml b/bin/x64/Debug/databaseConfigOracle.xml
index 6a4e220..7e48b08 100644
--- a/bin/x64/Debug/databaseConfigOracle.xml
+++ b/bin/x64/Debug/databaseConfigOracle.xml
@@ -2,7 +2,7 @@
True
192.168.0.203
- szhtdb
- huoshaoshan
- huoshaoshan
+ szhtdb2
+ release
+ release
\ No newline at end of file
diff --git a/bin/x64/Debug/glVersion.txt b/bin/x64/Debug/glVersion.txt
index bf6579a..cd750a2 100644
--- a/bin/x64/Debug/glVersion.txt
+++ b/bin/x64/Debug/glVersion.txt
Binary files differ
diff --git a/bin/x64/Debug/log.txt b/bin/x64/Debug/log.txt
index bc3c48c..d83e908 100644
--- a/bin/x64/Debug/log.txt
+++ b/bin/x64/Debug/log.txt
@@ -27956,3 +27956,147 @@
exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/bin/x64/Debug/1111.txt b/bin/x64/Debug/1111.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/bin/x64/Debug/1111.txt
diff --git a/bin/x64/Debug/databaseConfigOracle.xml b/bin/x64/Debug/databaseConfigOracle.xml
index 6a4e220..7e48b08 100644
--- a/bin/x64/Debug/databaseConfigOracle.xml
+++ b/bin/x64/Debug/databaseConfigOracle.xml
@@ -2,7 +2,7 @@
True
192.168.0.203
- szhtdb
- huoshaoshan
- huoshaoshan
+ szhtdb2
+ release
+ release
\ No newline at end of file
diff --git a/bin/x64/Debug/glVersion.txt b/bin/x64/Debug/glVersion.txt
index bf6579a..cd750a2 100644
--- a/bin/x64/Debug/glVersion.txt
+++ b/bin/x64/Debug/glVersion.txt
Binary files differ
diff --git a/bin/x64/Debug/log.txt b/bin/x64/Debug/log.txt
index bc3c48c..d83e908 100644
--- a/bin/x64/Debug/log.txt
+++ b/bin/x64/Debug/log.txt
@@ -27956,3 +27956,147 @@
exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 4e4f265..6ef4671 100644
--- a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
+++ b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary files differ
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/bin/x64/Debug/1111.txt b/bin/x64/Debug/1111.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/bin/x64/Debug/1111.txt
diff --git a/bin/x64/Debug/databaseConfigOracle.xml b/bin/x64/Debug/databaseConfigOracle.xml
index 6a4e220..7e48b08 100644
--- a/bin/x64/Debug/databaseConfigOracle.xml
+++ b/bin/x64/Debug/databaseConfigOracle.xml
@@ -2,7 +2,7 @@
True
192.168.0.203
- szhtdb
- huoshaoshan
- huoshaoshan
+ szhtdb2
+ release
+ release
\ No newline at end of file
diff --git a/bin/x64/Debug/glVersion.txt b/bin/x64/Debug/glVersion.txt
index bf6579a..cd750a2 100644
--- a/bin/x64/Debug/glVersion.txt
+++ b/bin/x64/Debug/glVersion.txt
Binary files differ
diff --git a/bin/x64/Debug/log.txt b/bin/x64/Debug/log.txt
index bc3c48c..d83e908 100644
--- a/bin/x64/Debug/log.txt
+++ b/bin/x64/Debug/log.txt
@@ -27956,3 +27956,147 @@
exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 4e4f265..6ef4671 100644
--- a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
+++ b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary files differ
diff --git a/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt b/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt
index fdc9bcf..2ffb024 100644
--- a/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt
+++ b/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt
@@ -1,579 +1,141 @@
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\ResolveAssemblyReference.cache
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\ResGen.read.1.tlog
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\ResGen.write.1.tlog
-C:\Users\yxw\Desktop\LSPipeline20150827\bin\LSPipeline.exe
-C:\Users\yxw\Desktop\LSPipeline20150827\bin\LSPipeline.pdb
-C:\Users\yxw\Desktop\LSPipeline20150827\bin\GSGlobeDotNet.xml
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.changeModelPathDlg.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAboutUs.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageBox.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageShow.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlDataGridView.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.MainFrm.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmConnectServer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDateTime.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteLines.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDigPit.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmElevateLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmLabel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmOutEarth.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPlantTrees.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmProject.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmValiData.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmLogManager.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Properties.Resources.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipedrain.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\LSPipeline.exe
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\LSPipeline.pdb
-D:\LSPipeline20150827\bin\LSPipeline.exe
-D:\LSPipeline20150827\bin\LSPipeline.pdb
-D:\LSPipeline20150827\obj\Debug\ResolveAssemblyReference.cache
-D:\LSPipeline20150827\obj\Debug\WorldGIS.changeModelPathDlg.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAboutUs.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageBox.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageShow.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlDataGridView.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.MainFrm.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmConnectServer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDateTime.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteLines.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDigPit.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmElevateLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmLabel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmOutEarth.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPlantTrees.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmProject.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmValiData.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmLogManager.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Properties.Resources.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipedrain.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-D:\LSPipeline20150827\obj\Debug\LSPipeline.exe
-D:\LSPipeline20150827\obj\Debug\LSPipeline.pdb
-D:\LSPipeline20150827\obj\Debug\GenerateResource.read.1.tlog
-D:\LSPipeline20150827\obj\Debug\GenerateResource.write.1.tlog
-D:\LSPipeline20150827\bin\LSPipeline.exe.config
-D:\LSPipeline20150827\bin\DevComponents.DotNetBar2.dll
-D:\LSPipeline20150827\bin\GSBalloonExDotNet.dll
-D:\LSPipeline20150827\bin\GSGlobeDotNet.dll
-D:\LSPipeline20150827\bin\GSToolTipDotNet.dll
-D:\LSPipeline20150827\bin\SDEUtilityDotNet.dll
-D:\LSPipeline20150827\bin\System.Windows.Forms.DataVisualization.Design.dll
-D:\LSPipeline20150827\bin\System.Windows.Forms.DataVisualization.dll
-D:\LSPipeline20150827\bin\ZedGraph.dll
-D:\LSPipeline20150827\bin\log4net.dll
-D:\LSPipeline20150827\bin\Aspose.Cells.dll
-D:\LSPipeline20150827\bin\x64\Debug\LSPipeline.exe.config
-D:\LSPipeline20150827\bin\x64\Debug\LSPipeline.exe
-D:\LSPipeline20150827\bin\x64\Debug\LSPipeline.pdb
-D:\LSPipeline\obj\Debug\WorldGIS.changeModelPathDlg.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAboutUs.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmMessageBox.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmMessageShow.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-D:\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmAddWellShp.resources
-D:\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmPipelineModelDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmValiData.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlDataGridView.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-D:\LSPipeline\obj\Debug\WorldGIS.MainFrm.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmConnectServer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetDateTime.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDeleteLines.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetDigPit.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmElevateLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmLabel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmOutEarth.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPlantTrees.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmProject.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmLogManager.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Properties.Resources.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPipedrain.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-F:\predator\codeReview\LSPipeline\bin\x64\Debug\LSPipeline.exe.config
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.exe
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.pdb
-F:\predator\codeReview\LSPipeline\bin\x64\Debug\LSPipeline.exe
-F:\predator\codeReview\LSPipeline\bin\x64\Debug\LSPipeline.pdb
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.csprojResolveAssemblyReference.cache
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.changeModelPathDlg.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAboutUs.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmMessageBox.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmMessageShow.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmAddWellShp.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmPipelineModelDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmValiData.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlDataGridView.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.MainFrm.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmConnectServer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetDateTime.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDeleteLines.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetDigPit.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmElevateLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmLabel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmOutEarth.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPlantTrees.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmProject.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmLogManager.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Properties.Resources.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPipedrain.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.csproj.GenerateResource.Cache
-D:\LSPipeline\obj\Debug\LSPipeline.csproj.GenerateResource.Cache
-D:\LSPipeline\bin\x64\Debug\Cyberpipe.exe.config
-D:\LSPipeline\bin\x64\Debug\Cyberpipe.exe
-D:\LSPipeline\bin\x64\Debug\Cyberpipe.pdb
-D:\LSPipeline\obj\Debug\Cyberpipe.exe
-D:\LSPipeline\obj\Debug\Cyberpipe.pdb
-D:\LSPipeline\obj\Debug\LSPipeline.csprojResolveAssemblyReference.cache
+D:\LSPipeline_new\bin\x64\Debug\Cyberpipe.exe.config
+D:\LSPipeline_new\bin\x64\Debug\Cyberpipe.exe
+D:\LSPipeline_new\bin\x64\Debug\Cyberpipe.pdb
+D:\LSPipeline_new\obj\Debug\WorldGIS.changeModelPathDlg.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAboutUs.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAddMultiModel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmMessageBox.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmMessageShow.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.HTForms.FrmAddWellShp.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.HTForms.FrmPipelineModelDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.HTForms.FrmValiData.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlDataGridView.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlModelPathPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlExtrudePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmWaterParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmTerrainExtra.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetFlyParams.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.MainFrm.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAdjustLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBackupDatabase.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmConnectServer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetDateTime.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDeleteLines.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetDigPit.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmElevateLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmFeatureInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmLabel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetLineStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmOutEarth.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPipelineIndented.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPlantTrees.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPolygonToWater.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmProject.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowValveInformation.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmLogManager.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Properties.Resources.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetSceneLight.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowSingleModel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPipedrain.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
+D:\LSPipeline_new\obj\Debug\LSPipeline.csproj.GenerateResource.Cache
+D:\LSPipeline_new\obj\Debug\Cyberpipe.exe
+D:\LSPipeline_new\obj\Debug\Cyberpipe.pdb
diff --git a/FrmBatchUpadateColor.cs b/FrmBatchUpadateColor.cs
index 199fb0a..0c6ba14 100644
--- a/FrmBatchUpadateColor.cs
+++ b/FrmBatchUpadateColor.cs
@@ -26,22 +26,30 @@
panelPoints.Enabled = false;
panelLines.Enabled = false;
panelPolygons.Enabled = false;
-
- if (mGlobeControl != null)
+ try
{
- GSOLayers layers = mGlobeControl.Globe.Layers;
- if (layers.Count > 0)
+ if (mGlobeControl != null)
{
- for (int i = 0; i < layers.Count; i++)
+ GSOLayers layers = mGlobeControl.Globe.Layers;
+ if (layers.Count > 0)
{
- GSOLayer layer = layers[i];
- comboBoxLayers.Items.Add(layer.Caption);
+ for (int i = 0; i < layers.Count; i++)
+ {
+ GSOLayer layer = layers[i];
+ comboBoxLayers.Items.Add(layer.Caption);
+ }
+ GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
+ comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
+ comboBoxLayers_TextChanged(sender, e);
}
- GSOLayer destLayer = mGlobeControl.Globe.DestLayerFeatureAdd;
- comboBoxLayers.Text = (destLayer.Type == EnumLayerType.MemoryLayer ? layers[0].Caption : destLayer.Caption);
- comboBoxLayers_TextChanged(sender, e);
}
}
+ catch (Exception ex)
+ {
+
+ string s = ex.Message;
+ }
+
}
private void button2_Click(object sender, EventArgs e)
@@ -130,6 +138,7 @@
if (panelLines.Enabled)
{
GSOGeoPolyline3D line = (GSOGeoPolyline3D)feature.Geometry;
+
if (line.Label != null)
{
line.Label.Visible = !checkBoxHideLabelOfLine.Checked;
@@ -137,13 +146,15 @@
if (line.Style == null)
{
GSOSimpleLineStyle3D styleLine = new GSOSimpleLineStyle3D();
+
styleLine.LineColor = lineColor;
- styleLine.LineWidth = lineWidth;
+ styleLine.LineWidth = lineWidth;
+
line.Style = styleLine;
}
else
{
- GSOSimpleLineStyle3D styleLine = (GSOSimpleLineStyle3D)line.Style;
+ GSOSimpleLineStyle3D styleLine = line.Style as GSOSimpleLineStyle3D;
if (styleLine == null)
{
GSOPipeLineStyle3D pipeStyle = (GSOPipeLineStyle3D)line.Style;
diff --git a/FrmFeatureInfo.cs b/FrmFeatureInfo.cs
index a513045..ae27b88 100644
--- a/FrmFeatureInfo.cs
+++ b/FrmFeatureInfo.cs
@@ -43,10 +43,12 @@
}
m_Feature = feature;
// 先备份一个
+ /*
if (feature != null)
{
m_OldFeture = feature.Clone();
}
+ * */
m_GlobeControl = globeControl;
}
@@ -65,15 +67,17 @@
if (m_Feature.Geometry != null)
{
+
// 属性信息页面
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
{
m_CtrlFeatureAttribute = new CtrlFeatureAttribute(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlFeatureAttribute, "tabAttribute", "属性信息");
}
-
+
switch (m_Feature.Geometry.Type)
{
+
case EnumGeometryType.GeoParticle:
{
InsertNewCtrlPage(0, new CtrlParticleParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -85,12 +89,14 @@
InsertNewCtrlPage(0, new CtrlMarkerTextPage(m_Feature.Geometry, m_GlobeControl), "tabMarkerText", "标注内容");
}
break;
+
case EnumGeometryType.GeoModel:
{
m_CtrlModePathPage = new CtrlModelPathPage(m_Feature, m_GlobeControl);
InsertNewCtrlPage(0, m_CtrlModePathPage, "tabModelPath", "模型路径");
}
break;
+
case EnumGeometryType.GeoFountain:
{
InsertNewCtrlPage(0, new CtrlFountainParamPage(m_Feature.Geometry, m_GlobeControl), "tabParam", "参数");
@@ -160,8 +166,10 @@
this.Text = "缺口椭圆台";
}
break;
+
}
-
+
+
// 空间信息页面
if (m_Feature.Geometry.IsEntity)
{
@@ -209,6 +217,7 @@
AddNewCtrlPage(new CtrlExtrudePage(m_Feature.Geometry, m_GlobeControl), "tabExtrude", "拉伸");
}
break;
+
}
}
if (m_Feature.Geometry.Type != EnumGeometryType.GeoPolyline3D)
@@ -216,6 +225,7 @@
m_CtrlGeometryCameraState = new CtrlGeometryCameraState(m_Feature, m_GlobeControl);
AddNewCtrlPage(m_CtrlGeometryCameraState, "tabCameraState", "定位参数");
}
+
}
}
@@ -238,7 +248,11 @@
m_CtrlGeometryCameraState.ExchangeData();
}
}
- m_Feature.Name = textBoxName.Text;
+ m_Feature.Name = textBoxName.Text;
+ //m_Feature.Geometry = CtrlModelPathPage.m_Feature.Geometry;
+
+ ((GSOGeoModel)m_Feature.Geometry).FilePath = ((GSOGeoModel)CtrlModelPathPage.m_Feature.Geometry).FilePath;
+ m_Feature.Dataset.Save();
m_GlobeControl.Refresh();
if (isCreate)
{
@@ -284,6 +298,7 @@
private void InsertNewCtrlPage(Int32 index,Control newCtrlPage, String key, String text)
{
tabControlMain.TabPages.Insert(index,key, text);
+
tabControlMain.TabPages[key].Controls.Add(newCtrlPage);
newCtrlPage.Dock = DockStyle.Fill;
}
@@ -301,11 +316,15 @@
if (m_Feature.Geometry != null && m_Feature.Geometry.CameraState != null)
{
m_GlobeControl.Globe.FlyToCameraState(m_Feature.Geometry.CameraState);
+
}
else
{
m_GlobeControl.Globe.FlyToFeature(m_Feature);
+
}
+
+ string str = m_Feature.Name;
}
}
diff --git a/LSPipeline.csproj b/LSPipeline.csproj
index a87266e..3562db5 100644
--- a/LSPipeline.csproj
+++ b/LSPipeline.csproj
@@ -20,6 +20,7 @@
3.5
+
http://localhost/WorldGIS/
true
Web
@@ -34,7 +35,6 @@
1.0.0.%2a
false
true
-
true
diff --git a/MainFrm.cs b/MainFrm.cs
index 8209963..0707ba3 100644
--- a/MainFrm.cs
+++ b/MainFrm.cs
@@ -146,7 +146,7 @@
globeControl1.Globe.UserBackgroundColorValid = true;
globeControl1.Globe.UserBackgroundColor = Color.White;
- //globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
+ globeControl1.Globe.OverviewControl.Visible = false;//鹰眼
globeControl1.Globe.ScalerControl.Visible = false; //比例尺
//自定义工具栏
diff --git a/Program.cs b/Program.cs
index fabbe8f..4da314c 100644
--- a/Program.cs
+++ b/Program.cs
@@ -3,6 +3,7 @@
//using System.Linq;
using System.Windows.Forms;
+
namespace WorldGIS
{
static class Program
diff --git a/UserControls/CtrlModelPathPage.cs b/UserControls/CtrlModelPathPage.cs
index 02e054e..437bc1d 100644
--- a/UserControls/CtrlModelPathPage.cs
+++ b/UserControls/CtrlModelPathPage.cs
@@ -13,7 +13,9 @@
public partial class CtrlModelPathPage : UserControl
{
public GSOGlobeControl m_GlobeControl = null;
- public GSOFeature m_Feature= null;
+ public static GSOFeature m_Feature= null;
+ public GSOLayer m_layer = null;
+
// 空间信息的窗体要要更新
public CtrlEntitySpaceInfo m_SpaceCtrl=null;
@@ -49,6 +51,7 @@
GSOGeoModel geoOldModel = m_Feature.Geometry as GSOGeoModel;
GSOGeoModel geoModel = new GSOGeoModel();
geoModel.FilePath = modelPath;
+ //geoModel.Name = m_Feature.Name;
String strFilePath = modelPath;
string strFileExt = Path.GetExtension(strFilePath);
@@ -103,6 +106,9 @@
// 将新模型赋值给他,注意只能通过这种方式,如果改变原来模型的FilePath的方法可能有问题
m_Feature.Geometry = geoModel;
+
+ //m_Feature.Dataset.Save();
+ //m_Feature.Name = geoModel.Name;
if (m_SpaceCtrl != null)
{
m_SpaceCtrl.UpdateControls();
@@ -112,6 +118,7 @@
m_GlobeControl.Refresh();
}
+
}
private void CtrlModelPathPage_Load(object sender, EventArgs e)
diff --git a/bin/x64/Debug/1111.txt b/bin/x64/Debug/1111.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/bin/x64/Debug/1111.txt
diff --git a/bin/x64/Debug/databaseConfigOracle.xml b/bin/x64/Debug/databaseConfigOracle.xml
index 6a4e220..7e48b08 100644
--- a/bin/x64/Debug/databaseConfigOracle.xml
+++ b/bin/x64/Debug/databaseConfigOracle.xml
@@ -2,7 +2,7 @@
True
192.168.0.203
- szhtdb
- huoshaoshan
- huoshaoshan
+ szhtdb2
+ release
+ release
\ No newline at end of file
diff --git a/bin/x64/Debug/glVersion.txt b/bin/x64/Debug/glVersion.txt
index bf6579a..cd750a2 100644
--- a/bin/x64/Debug/glVersion.txt
+++ b/bin/x64/Debug/glVersion.txt
Binary files differ
diff --git a/bin/x64/Debug/log.txt b/bin/x64/Debug/log.txt
index bc3c48c..d83e908 100644
--- a/bin/x64/Debug/log.txt
+++ b/bin/x64/Debug/log.txt
@@ -27956,3 +27956,147 @@
exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:16---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:42---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:11:53---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 113
+
+
+
+ exception over ------------------------------------------------------------
+
+ exception begin -----------------2018/2/22 17:12:17---------------------
+
+
+
+ e.Message:输入字符串的格式不正确。
+
+ e.Source:mscorlib
+
+ e.TargetSite:Double ParseDouble(System.String, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo)
+
+ e.StackTrace: 在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
+ 在 System.Convert.ToDouble(String value)
+ 在 WorldGIS.CtrlEntitySpaceInfo.positionChanged() 位置 D:\LSPipeline_new\UserControls\CtrlEntitySpaceInfo.cs:行号 115
+
+
+
+ exception over ------------------------------------------------------------
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index 4e4f265..6ef4671 100644
--- a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
+++ b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary files differ
diff --git a/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt b/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt
index fdc9bcf..2ffb024 100644
--- a/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt
+++ b/obj/Debug/LSPipeline.csproj.FileListAbsolute.txt
@@ -1,579 +1,141 @@
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\ResolveAssemblyReference.cache
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\ResGen.read.1.tlog
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\ResGen.write.1.tlog
-C:\Users\yxw\Desktop\LSPipeline20150827\bin\LSPipeline.exe
-C:\Users\yxw\Desktop\LSPipeline20150827\bin\LSPipeline.pdb
-C:\Users\yxw\Desktop\LSPipeline20150827\bin\GSGlobeDotNet.xml
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.changeModelPathDlg.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAboutUs.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageBox.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageShow.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlDataGridView.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.MainFrm.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmConnectServer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDateTime.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteLines.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDigPit.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmElevateLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmLabel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmOutEarth.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPlantTrees.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmProject.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmValiData.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmLogManager.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.Properties.Resources.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipedrain.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\LSPipeline.exe
-C:\Users\yxw\Desktop\LSPipeline20150827\obj\Debug\LSPipeline.pdb
-D:\LSPipeline20150827\bin\LSPipeline.exe
-D:\LSPipeline20150827\bin\LSPipeline.pdb
-D:\LSPipeline20150827\obj\Debug\ResolveAssemblyReference.cache
-D:\LSPipeline20150827\obj\Debug\WorldGIS.changeModelPathDlg.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAboutUs.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageBox.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmMessageShow.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlDataGridView.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.MainFrm.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmConnectServer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDateTime.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDeleteLines.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetDigPit.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmElevateLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmLabel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmOutEarth.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPlantTrees.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmProject.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmValiData.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmLogManager.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.Properties.Resources.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmPipedrain.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-D:\LSPipeline20150827\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-D:\LSPipeline20150827\obj\Debug\LSPipeline.exe
-D:\LSPipeline20150827\obj\Debug\LSPipeline.pdb
-D:\LSPipeline20150827\obj\Debug\GenerateResource.read.1.tlog
-D:\LSPipeline20150827\obj\Debug\GenerateResource.write.1.tlog
-D:\LSPipeline20150827\bin\LSPipeline.exe.config
-D:\LSPipeline20150827\bin\DevComponents.DotNetBar2.dll
-D:\LSPipeline20150827\bin\GSBalloonExDotNet.dll
-D:\LSPipeline20150827\bin\GSGlobeDotNet.dll
-D:\LSPipeline20150827\bin\GSToolTipDotNet.dll
-D:\LSPipeline20150827\bin\SDEUtilityDotNet.dll
-D:\LSPipeline20150827\bin\System.Windows.Forms.DataVisualization.Design.dll
-D:\LSPipeline20150827\bin\System.Windows.Forms.DataVisualization.dll
-D:\LSPipeline20150827\bin\ZedGraph.dll
-D:\LSPipeline20150827\bin\log4net.dll
-D:\LSPipeline20150827\bin\Aspose.Cells.dll
-D:\LSPipeline20150827\bin\x64\Debug\LSPipeline.exe.config
-D:\LSPipeline20150827\bin\x64\Debug\LSPipeline.exe
-D:\LSPipeline20150827\bin\x64\Debug\LSPipeline.pdb
-D:\LSPipeline\obj\Debug\WorldGIS.changeModelPathDlg.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAboutUs.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmMessageBox.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmMessageShow.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-D:\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmAddWellShp.resources
-D:\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmPipelineModelDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmValiData.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlDataGridView.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-D:\LSPipeline\obj\Debug\WorldGIS.MainFrm.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmConnectServer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetDateTime.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDeleteLines.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetDigPit.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmElevateLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmLabel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmOutEarth.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPlantTrees.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmProject.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmLogManager.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-D:\LSPipeline\obj\Debug\WorldGIS.Properties.Resources.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmPipedrain.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-D:\LSPipeline\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-D:\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-F:\predator\codeReview\LSPipeline\bin\x64\Debug\LSPipeline.exe.config
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.exe
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.pdb
-F:\predator\codeReview\LSPipeline\bin\x64\Debug\LSPipeline.exe
-F:\predator\codeReview\LSPipeline\bin\x64\Debug\LSPipeline.pdb
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.csprojResolveAssemblyReference.cache
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.changeModelPathDlg.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAboutUs.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAddMultiModel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmMessageBox.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmMessageShow.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmAddWellShp.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmPipelineModelDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.HTForms.FrmValiData.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlDataGridView.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlModelPathPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlExtrudePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmWaterParamPage.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmTerrainExtra.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetFlyParams.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.MainFrm.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAdjustLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBackupDatabase.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmConnectServer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetDateTime.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDeleteLines.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetDigPit.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmElevateLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmFeatureInfo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmLabel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetLineStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmOutEarth.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPipelineIndented.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPlantTrees.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPolygonToWater.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmProject.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowValveInformation.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmLogManager.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.Properties.Resources.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetSceneLight.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowSingleModel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmPipedrain.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
-F:\predator\codeReview\LSPipeline\obj\Debug\LSPipeline.csproj.GenerateResource.Cache
-D:\LSPipeline\obj\Debug\LSPipeline.csproj.GenerateResource.Cache
-D:\LSPipeline\bin\x64\Debug\Cyberpipe.exe.config
-D:\LSPipeline\bin\x64\Debug\Cyberpipe.exe
-D:\LSPipeline\bin\x64\Debug\Cyberpipe.pdb
-D:\LSPipeline\obj\Debug\Cyberpipe.exe
-D:\LSPipeline\obj\Debug\Cyberpipe.pdb
-D:\LSPipeline\obj\Debug\LSPipeline.csprojResolveAssemblyReference.cache
+D:\LSPipeline_new\bin\x64\Debug\Cyberpipe.exe.config
+D:\LSPipeline_new\bin\x64\Debug\Cyberpipe.exe
+D:\LSPipeline_new\bin\x64\Debug\Cyberpipe.pdb
+D:\LSPipeline_new\obj\Debug\WorldGIS.changeModelPathDlg.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmPipelineModelDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAboutUs.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAddMultiModel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBaseLineProfillAnalysis.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCheckPipelinePoint.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmMessageBox.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmMessageShow.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmTextureParamSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdateLayerFieldValues.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.HTForms.FrmAddWellShp.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.HTForms.FrmPipelineModelDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.HTForms.FrmValiData.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlBoxEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlCylinderEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlDataGridView.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEllipCylinderEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEllipFrustumEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEllipsoidEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEntitySpaceInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlEntityStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlFeatureAttribute.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlFountainParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlFrustumEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineFieldsValuePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineStylePreview.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlMarkerStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlMarkerTextPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlGeometryCameraState.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlParticleParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlSimpleLineStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlModelPathPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPoint3DSpaceInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlExtrudePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPolygonStylePage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPolylineSpaceInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlRangeEllipCylinderEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlRangeEllipFrustumEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlRangeEllipsoidEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlSimpleLineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlSphereEntityParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmWaterParamPage.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisDigFill.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmTerrainExtra.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmFloodSubmergeAnalysis.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetFlyParams.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.MainFrm.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetPipelineStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddLayerFromDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddPipeFitting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddWell.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmCloneFeatureDatasetStructure.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmMultiPipelineModelDB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmNewDBFeatureDataset.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmCancelLayerjoint.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmPaiShui2DB.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmShp2KML.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmFalseEastNorth.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAddFieldToLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCreatePipeLineLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddValve.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreateModel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddWellShp.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Forms.FrmAddYuBiZiShp.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAdjustLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetArrowStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowAtrributesByTable.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBackupDatabase.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpadateColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpdateFieldValue.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetPipelineJointParams.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowValvesNeedClose.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmConnectServer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDatabaseParaSettingSqlServer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetDateTime.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDecjointPipeline.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDeleteFieldFromLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDeleteLines.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetDigPit.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmElevateLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmFeatureInfo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisFlow.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCreateGenTopo.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmLabel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetLayerVisibleAltitude.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetLineStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmLineToPowerLine.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmMergeLayerLgdAndKml.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmOutEarth.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBacthUpdateModelPath.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmParticalExportLayer.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPipelineIndented.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPipelineLayerButtjoint.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreatePipeline.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPlantTrees.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetPolygonStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPolygonToWater.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmProject.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowValveInformation.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUnderGroundFloorSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdateFeatureNames.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdateLayoutColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUpdatePipelineColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmCopyFeatureDataset.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmEditLayerAttributes.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisHengDuanMian.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmLogManager.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpdatePipelineColor.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmEditLayerAttributesByTable.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmUnionFeatureDataset.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetGroundOpaque.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisProfile.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.Properties.Resources.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetSceneLight.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchExportLayerByZ.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmFlyToLatLonPos.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetLayerOpaque.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowSingleModel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetObjectVisibleDistance.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetObjectVisiblePixelSize.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmPipedrain.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreatePore.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchCreatePipeDitch.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAtrributeMapping1.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlLineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlPipelineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmQueryPipelineBySQL.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmAnalysisCollision.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmShowFeatureAttributesByTable.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetSelectLevel.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmSetOutlineStyle.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmBatchUpadateFontOfMarkers.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.CtrlExtentSectionlineStyleSetting.resources
+D:\LSPipeline_new\obj\Debug\WorldGIS.FrmDatabaseParaSettingOracle.resources
+D:\LSPipeline_new\obj\Debug\LSPipeline.csproj.GenerateResource.Cache
+D:\LSPipeline_new\obj\Debug\Cyberpipe.exe
+D:\LSPipeline_new\obj\Debug\Cyberpipe.pdb
diff --git a/obj/Debug/LSPipeline.csproj.GenerateResource.Cache b/obj/Debug/LSPipeline.csproj.GenerateResource.Cache
index 2c9fa4c..8dd275b 100644
--- a/obj/Debug/LSPipeline.csproj.GenerateResource.Cache
+++ b/obj/Debug/LSPipeline.csproj.GenerateResource.Cache
Binary files differ