MapControl.cs 538 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace IntelligentControlForsx.MyControls.zm.map
  11. {
  12. public partial class MapControl : UserControl
  13. {
  14. public MapControl()
  15. {
  16. InitializeComponent();
  17. }
  18. public virtual void Active()
  19. {
  20. }
  21. public virtual void DeActive()
  22. {
  23. }
  24. }
  25. }