You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.7 KiB

using Module.Plc.Profinet.Tool;
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;
namespace ChipGlueDeviceManager
{
public partial class FrmT2WordAction : Form
{
public FrmT2WordAction()
{
InitializeComponent();
}
private void FrmT2WordAction_Load(object sender, EventArgs e)
{
}
private void btnT2CotWordAction_MouseDown(object sender, MouseEventArgs e)
{
T2CotControlFunc.WordAction();
}
private void btnT2CotWordAction_MouseUp(object sender, MouseEventArgs e)
{
T2CotControlFunc.WordActionClose();
}
private void btnT2Hp1WordAction_MouseDown(object sender, MouseEventArgs e)
{
T2HotPlateControlFunc.HP1WordAction();
}
private void btnT2Hp1WordAction_MouseUp(object sender, MouseEventArgs e)
{
T2HotPlateControlFunc.HP1WordActionClose();
}
private void btnT2Hp2WordAction_MouseDown(object sender, MouseEventArgs e)
{
T2HotPlateControlFunc.HP2WordAction();
}
private void btnT2Hp2WordAction_MouseUp(object sender, MouseEventArgs e)
{
T2HotPlateControlFunc.HP2WordActionClose();
}
private void btnT2CpWordAction_MouseDown(object sender, MouseEventArgs e)
{
T2ColdPlateControlFunc.CpWordAction();
}
private void btnT2CpWordAction_MouseUp(object sender, MouseEventArgs e)
{
T2ColdPlateControlFunc.CpWordActionClose();
}
}
}