EagleEyeEx.cs 424 B

123456789101112131415161718192021222324
  1. using SuperMap.UI;
  2. using SuperMap.Mapping;
  3. using System.Windows.Forms;
  4. namespace WWPipeLine.MapBasic
  5. {
  6. public partial class EagleEyeEx : ToolWindowExtend
  7. {
  8. public EagleEyeEx(MapControl _mapControl)
  9. {
  10. this.Controls.Add(_mapControl);
  11. this.TabText = "鹰眼";
  12. this.Text = "EagleEyeEx鹰眼";
  13. this.Tag = "MainControls";
  14. }
  15. private void EagleEyeEx_Load(object sender, System.EventArgs e)
  16. {
  17. }
  18. }
  19. }