首次提交

This commit is contained in:
XingCheng3
2026-05-11 11:09:04 +08:00
commit 79c0f9cd43
260 changed files with 33504 additions and 0 deletions

View 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;
}
}
}