TemplateForm.cs 954 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Drawing.Drawing2D;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using IntelligentControlForsx.ChildForms;
  12. namespace IntelligentControlForsx.Template
  13. {
  14. public partial class TemplateForm : Form
  15. {
  16. public TemplateForm()
  17. {
  18. InitializeComponent();
  19. }
  20. public virtual void Active()
  21. {
  22. }
  23. public virtual void DeActive()
  24. {
  25. }
  26. public virtual void SelectedStationChanged(string stationId)
  27. {
  28. }
  29. //protected override CreateParams CreateParams
  30. //{
  31. // get
  32. // {
  33. // CreateParams cp = base.CreateParams;
  34. // cp.ExStyle |= 0x02000000;
  35. // return cp;
  36. // }
  37. //}
  38. }
  39. }