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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Windows.Forms ;
using System.Data ;
using Mesnac.Action.Base ;
namespace Mesnac.Action.ChemicalWeighing.CylinderManage
{
/// <summary>
/// 报警参数窗体初始化
/// </summary>
public class InitFormAction : ChemicalWeighingAction , IAction
{
private RuntimeParameter _runtime ;
public void Run ( RuntimeParameter runtime )
{
base . RunIni ( runtime ) ; //必须要调用的
this . _runtime = runtime ;
ICSharpCode . Core . LoggingService < InitFormAction > . Debug ( "拉缸管理-窗体初始化..." ) ;
//通用调用刷新计划事件订阅
RefreshAction . OnRefresh - = Process_Event ;
RefreshAction . OnRefresh + = Process_Event ;
DbMCControl clientGridControl = this . GetDbMCControlByKey ( Mesnac . Basic . DataSourceFactory . MCDbType . Local , "Hw_Cylinder" ) . FirstOrDefault ( ) ;
if ( clientGridControl = = null | | ! ( clientGridControl . BaseControl is DataGridView ) )
{
ICSharpCode . Core . LoggingService < InitFormAction > . Error ( "{拉缸管理—初始化}缺少警管理控件..." ) ;
return ;
}
DataGridView alarmGridView = clientGridControl . BaseControl as DataGridView ;
DataTable table = CylinderHelper . GetCylinderTable ( ) ;
lock ( String . Empty )
{
//本地计划
if ( clientGridControl ! = null & & clientGridControl . BaseControl ! = null )
{
clientGridControl . BaseControl . BindDataSource = null ;
clientGridControl . BaseControl . BindDataSource = table ;
}
else
{
ICSharpCode . Core . LoggingService < InitFormAction > . Warn ( "拉缸管理初始化失败: 本地控件为Null..." ) ;
}
}
}
#region 事件处理方法
private void Process_Event ( object sender , EventArgs e )
{
if ( sender is RuntimeParameter )
{
this . Run ( sender as RuntimeParameter ) ;
}
else
{
this . Run ( this . _runtime ) ;
}
}
# endregion
}
}