List<T>.Sort() → 排序T
List<T>.Find() → 找出一個T
List<T>.FindAll() →找出多個T
List<T>.Exist() →判斷T是否存在
----------------------END---------------------------
提示确定,例如删除等
cs
//提示是否提交
if (MessageBox.Show("请确认要替换码?", "码替换", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.No)
{
return;
}
----------------------END---------------------------
判断数据为空
cs
if (string.IsNullOrEmpty(Xcode))
{
MessageBox.Show("抱歉!当前任务扫码" + dqcode + "采集无数据1");
return;
}
----------------------END---------------------------
cs
//选中获取焦点
txtsonr.Select();
txtsonr.Focus();
----------------------END---------------------------
加载中.....提示
cs
//测试弹窗 加载中
LoaderForm.msg = "正在查询,请稍等..";
SplashScreen.Show(typeof(LoaderForm));
//Thread.Sleep(20);
//END
//关闭 提示
try
{
SplashScreen.Close();
}
catch (Exception)
{
}
涉及到几个类,源码打包下载地址如下:
https://download.csdn.net/download/li0531/89682541
----------------------END---------------------------
//文件不存在
cs
//文件不存在
if (!File.Exists(Yfile))
{
MessageBox.Show("NN");
}
----------------------END---------------------------
//调用系统默认的浏览器
cs
//调用系统默认的浏览器
System.Diagnostics.Process.Start("explorer.exe", "https://blog.csdn.net/li0531");
----------------------END---------------------------
获取当前程序地址
cs
string path = $"{Application.StartupPath}\\label.btw";
----------------------END---------------------------