1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using IntelligentControlForsx.ChildForms;
- namespace IntelligentControlForsx.Template
- {
- public partial class TemplateForm : Form
- {
- public TemplateForm()
- {
- InitializeComponent();
- }
- public virtual void Active()
- {
- }
- public virtual void DeActive()
- {
- }
- public virtual void SelectedStationChanged(string stationId)
- {
- }
- //protected override CreateParams CreateParams
- //{
- // get
- // {
- // CreateParams cp = base.CreateParams;
- // cp.ExStyle |= 0x02000000;
- // return cp;
- // }
- //}
- }
- }
|