12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using IntelligentControlForsx.Template;
- namespace IntelligentControlForsx.ChildForms
- {
- public partial class StatForm : TemplateForm
- {
- public StatForm()
- {
- InitializeComponent();
- this.controlLog1.BindDataControlInfo();
- }
- public override void Active()
- {
- this.Show();
- this.controlLog1.Active();
- }
- public override void DeActive()
- {
- this.Hide();
- }
- }
- }
|