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.

61 lines
1.6 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
{
/*
*E_AlarmSettingForm
*
*2010-10-30
*
*/
public partial class E_AlarmSettingForm : Form
{
public TextBox[] arrTextBox = new TextBox[8];
public string sMID;
/*
*E_AlarmSettingForm
*
*2010-10-30
*void
*void
*textbox
*/
public E_AlarmSettingForm()
{
InitializeComponent();
arrTextBox[0] = tbThresholdILL;
arrTextBox[1] = tbThresholdIL;
arrTextBox[2] = tbThresholdIU;
arrTextBox[3] = tbThresholdIUU;
arrTextBox[4] = tbThresholdULL;
arrTextBox[5] = tbThresholdUL;
arrTextBox[6] = tbThresholdUU;
arrTextBox[7] = tbThresholdUUU;
}
/*
*E_AlarmSettingForm_Shown
*
*2010-10-30
*object sender , EventArgs e
*void
*ID
*/
private void E_AlarmSettingForm_Shown(object sender, EventArgs e)
{
tbMeterNo.Text = sMID;
}
}
}