StatForm.cs 711 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using IntelligentControlForsx.Template;
  11. namespace IntelligentControlForsx.ChildForms
  12. {
  13. public partial class StatForm : TemplateForm
  14. {
  15. public StatForm()
  16. {
  17. InitializeComponent();
  18. this.controlLog1.BindDataControlInfo();
  19. }
  20. public override void Active()
  21. {
  22. this.Show();
  23. this.controlLog1.Active();
  24. }
  25. public override void DeActive()
  26. {
  27. this.Hide();
  28. }
  29. }
  30. }