123456789101112131415161718 |
- using SuperMap.UI;
- using SuperMap.Mapping;
- using System.Windows.Forms;
- namespace WWPipeLine.MapBasic
- {
- public partial class EagleEyeEx : ToolWindowExtend
- {
- public EagleEyeEx(MapControl _mapControl)
- {
- this.Controls.Add(_mapControl);
- this.TabText = "鹰眼";
- this.Text = "EagleEyeEx鹰眼";
- this.Tag = "MainControls";
- }
- }
- }
|