20 lines
558 B
C#
20 lines
558 B
C#
using System;
|
|
|
|
namespace NKC_WF
|
|
{
|
|
public partial class MachineLoad : BasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
cmp_stackLoading.eh_doRefresh += Cmp_stackLoading_eh_doRefresh;
|
|
}
|
|
|
|
private void Cmp_stackLoading_eh_doRefresh(object sender, EventArgs e)
|
|
{
|
|
cmp_ML_ShDet.BatchId = cmp_stackLoading.BatchIdCurr;
|
|
cmp_ML_ShDet1.BatchId = cmp_stackLoading.BatchIdCurr;
|
|
cmp_ML_ShDet2.BatchId = cmp_stackLoading.BatchIdCurr;
|
|
cmp_ML_ShDet3.BatchId = cmp_stackLoading.BatchIdCurr;
|
|
}
|
|
}
|
|
} |