You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
707 B
24 lines
707 B
using ESRI.ArcGIS.Carto; |
|
using Kingo.Plugin.BGResultManager.View; |
|
using Kingo.PluginServiceInterface; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.Plugin.BGResultManager.Services |
|
{ |
|
public class BGResultFormHelper : IBGResultFormHelper |
|
{ |
|
public FrmGCDataToSHPGTY frmGCDataToSHPGTY = null; |
|
public void InitView(IFeatureLayer layer) |
|
{ |
|
frmGCDataToSHPGTY = new FrmGCDataToSHPGTY(layer) |
|
{ |
|
WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen |
|
}; |
|
frmGCDataToSHPGTY.ShowInMainWindow(true); |
|
} |
|
} |
|
}
|
|
|