首次提交
This commit is contained in:
42
SCADA/MainGuide/MW.PageDelayRefresh.cs
Normal file
42
SCADA/MainGuide/MW.PageDelayRefresh.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace MesWork
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class Temp { }
|
||||
/// <summary>
|
||||
/// 延时刷新(框架通用方法)
|
||||
/// </summary>
|
||||
public partial class MesWorkForm
|
||||
{
|
||||
// timer_OnLine_Show_Tick 已移至 MAIN_PAGE.cs 中统一管理
|
||||
|
||||
/// <summary>
|
||||
/// 值处理函数
|
||||
/// </summary>
|
||||
/// <param name="value"></param>
|
||||
/// <returns></returns>
|
||||
public static bool ValueT(string value)
|
||||
{
|
||||
bool success = false;
|
||||
if (value == "true" | value == "1")
|
||||
{
|
||||
success = true;
|
||||
}
|
||||
return success;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user