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

52 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ClientTest
{
/*
*T_AlarmSettingForm
*
*2010-10-30
*湿
*/
public partial class T_AlarmSettingForm : Form
{
public TextBox[] arrTextBox = new TextBox[8];
public string sMID;
public T_AlarmSettingForm()
{
InitializeComponent();
arrTextBox[0] = tbThresholdTLL;
arrTextBox[1] = tbThresholdTL;
arrTextBox[2] = tbThresholdTU;
arrTextBox[3] = tbThresholdTUU;
arrTextBox[4] = tbThresholdHLL;
arrTextBox[5] = tbThresholdHL;
arrTextBox[6] = tbThresholdHU;
arrTextBox[7] = tbThresholdHUU;
}
/*
*T_AlarmSettingForm_Shown
*
*2010-10-30
*object sender , EventArgs e
*void
*ID
*/
private void T_AlarmSettingForm_Shown(object sender, EventArgs e)
{
tbMeterNo.Text = sMID;
}
}
}