.net开发日常笔记(持续更新)

List.Sort() → 排序T

List.Find() → 找出一個T

List.FindAll() →找出多個T

List.Exist() →判斷T是否存在

----------------------END---------------------------

 提示确定,例如删除等

//提示是否提交
                if (MessageBox.Show("请确认要替换码?", "码替换", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.No)
                {

                    return;
                }

----------------------END---------------------------

判断数据为空

if (string.IsNullOrEmpty(Xcode))
                {
                    MessageBox.Show("抱歉!当前任务扫码" + dqcode + "采集无数据1");
                    return;
                }

----------------------END---------------------------

//选中获取焦点
                    txtsonr.Select();
                    txtsonr.Focus();

----------------------END---------------------------

加载中.....提示

.net开发日常笔记(持续更新)_第1张图片

//测试弹窗 加载中

            LoaderForm.msg = "正在查询,请稍等..";
            SplashScreen.Show(typeof(LoaderForm));

            //Thread.Sleep(20);

            //END

            
            //关闭 提示
            try
            {
                SplashScreen.Close();
            }
            catch (Exception)
            {

            }	

涉及到几个类,源码打包下载地址如下:

https://download.csdn.net/download/li0531/89682541

----------------------END---------------------------

//文件不存在

//文件不存在
                if (!File.Exists(Yfile))
                {
                    MessageBox.Show("NN");
                }

----------------------END---------------------------

//调用系统默认的浏览器   

//调用系统默认的浏览器   
System.Diagnostics.Process.Start("explorer.exe", "https://blog.csdn.net/li0531");

----------------------END---------------------------

获取当前程序地址

string path = $"{Application.StartupPath}\\label.btw";

----------------------END---------------------------

你可能感兴趣的:(C#,WinForms,.net)