翼度科技»论坛 编程开发 .net 查看内容

C# 开发桌面应用简单介绍

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
一. C#使用场景介绍
  C#是微软公司发布的一种由C和C++衍生出来的面向对象的编程语言、运行于.NET Framework和.NET Core(完全开源,跨平台)之上的高级程序设计语言。
二. 开发流程
  1. 创建项目:打开Visual Studio后右侧选择“创建新项目”,然后选择“C# Windows窗体应用”即可创建桌面程序
  2. 创建窗体:创建后会自动创建一个Form窗体作为主窗口,可以采用拖拽方式进行项目开发,通过导航栏的《视图》-->《工具栏》打开内置的工具箱功能
  3. 启动开发:开发时有两种模式,可视化开发和编写代码。可视化开发选中窗体或者元素右侧会弹出属性栏可以设置样式以及定义事件;代码开发可以通过对应的映射文件进行逻辑开发。
  4. 运行程序:开发完成后点击屏幕上方的绿色箭头按钮,“启动”按钮运行程序同时进入Debug模式,支持功能调试,“开始运行”按钮只运行程序,没有进入Debug模式。
  5. 生成解决方案:点击导航栏上的“生成”->“生成解决方案”就可以生成项目文件
三. 常用功能
  1. 弹出框和自动关闭弹框:项目开发中经常需要弹出框以及关闭弹出框,建议根据不同的等级封装统一组件进行调用
  1. // 提示弹框
  2. public static void PopWarning(string tip, string title = "提示")
  3. {
  4.     MessageBox.Show(tip, title);
  5. }
  6. // 错误弹框
  7. public static void PopError(string tip, string title = "错误")
  8. {
  9.     MessageBox.Show(tip, title);
  10. }
  11. // 自动关闭弹框
  12. public void BoxAutoClose(string tip, int time = 3000)
  13. {
  14.     Form msg = new Form();
  15.     Task.Run(new Action(() =>
  16.     {
  17.         Thread.Sleep(time);
  18.         msg.Invoke((Action)(() =>
  19.         {
  20.             msg.Close();
  21.         }));
  22.     }));
  23.     MessageBox.Show(msg, tip, "提示");
  24. }
复制代码
  2. 串口的使用和指令的封装:项目开发中需要和固件通过串口进行数据交互,C#内置Serialport组件可以使用,但是建议不要拖拽,最好是new一个,然后将发送指令、接收指令以及超时机制结合在一起使用
  1. // 命令类,存储指令和时间对象
  2. class Command {
  3.     // 存储指令数据集
  4.     public Dictionary<string, Hashtable> data = new Dictionary<string, Hashtable>();
  5.     // 默认超时时间是7秒
  6.     public void Set(string id, int timeUpper = 7)
  7.     {
  8.         if (data.ContainsKey(id))
  9.         {
  10.             data[id]["time"] = DateTime.Now;
  11.         }
  12.         else
  13.         {
  14.             Hashtable ht = new Hashtable();
  15.             ht.Add("time", DateTime.Now);
  16.             ht.Add("timeUpper", timeUpper);
  17.             data[id] = ht;
  18.         }
  19.     }
  20.     public void Delete(string id)
  21.     {
  22.         data.Remove(id);
  23.     }
  24.     public void DeleteAll()
  25.     {
  26.         data.Clear();
  27.     }
  28.     /**
  29.      * 识别超时的命令
  30.      */
  31.     public string[] CheckOverTime()
  32.     {
  33.         if (data == null)
  34.         {
  35.             return new string[0] { };
  36.         }
  37.         string[] coms = new string[data.Count];
  38.         for (int i = 0; i < data.Count; i++)
  39.         {
  40.             DateTime val = (DateTime)data.ElementAt(i).Value["time"];
  41.             int timeUpper = (int)data.ElementAt(i).Value["timeUpper"];
  42.             if (new TimeSpan(DateTime.Now.Ticks - val.Ticks).TotalSeconds > timeUpper)
  43.             {
  44.                 coms[i] = data.ElementAt(i).Key;
  45.             }
  46.         }
  47.         return coms.Where(e => e != null).ToArray();
  48.     }
  49. }
复制代码
创建一个Command类,主要存储发送指令集以及判断指令是否超时
  1. class Serial {
  2.     private SerialPort port;
  3.     Form main;
  4.     Command cmd;
  5.    
  6.     public Serial(Form main)
  7.     {
  8.         this.main = main;
  9.         cmd = new Command();
  10.         this.Init();
  11.         this.CreateTimer();
  12.     }
  13.     /**
  14.      * 创建定时器,每秒查询一次是否有超时的命令
  15.      */
  16.     public void CreateTimer()
  17.     {
  18.         System.Timers.Timer cTimer = new System.Timers.Timer();
  19.         cTimer.Interval = 1000;
  20.         cTimer.Enabled = true;
  21.         cTimer.AutoReset = true;
  22.         cTimer.Elapsed += new System.Timers.ElapsedEventHandler((Object source, ElapsedEventArgs e) =>
  23.         {
  24.             string[] cmds = cmd.CheckOverTime();
  25.             for (int i = 0; i < cmds.Length; i++)
  26.             {
  27.                 cmd.Delete(cmds[i]);
  28.                 if (cmds[i] != "FF")
  29.                 {
  30.                     // 返回主窗口超时标识
  31.                     main.DealRes(new byte[] { (byte)Convert.ToInt32(cmds[i], 16) }, 1);
  32.                 }
  33.             }
  34.         });
  35.     }
  36.     /**
  37.      * 初始化创建串口组件
  38.      */
  39.     void Init() {
  40.         port = new SerialPort();
  41.         port.BaudRate = 9600;
  42.         port.Parity = Parity.None;
  43.         port.StopBits = StopBits.One;
  44.         port.DataBits = 8;
  45.         port.DataReceived += new SerialDataReceivedEventHandler(ReceiveData);
  46.     }
  47.     /**
  48.      * 将字符数组转换成字符串
  49.      */
  50.     public static string ByteToStr(byte[] data)
  51.     {
  52.         string str = "";
  53.         for (int i = 0; i < data.Length; i++)
  54.         {
  55.             str += data[i].ToString("X2");
  56.         }
  57.         return str;
  58.     }
  59.     /**
  60.      * 接收数据并解析,将解析结果返回主窗口
  61.      */
  62.     public void ReceiveData(object sender, SerialDataReceivedEventArgs e) {
  63.         // 接受数据时建议保留延时200毫秒,否则会存在由于接收不及时,一包数据被分成两段返回的情况
  64.         System.Threading.Thread.Sleep(200);
  65.         main.BeginInvoke((EventHandler)delegate
  66.         {
  67.             if (port.IsOpen)
  68.             {
  69.                 int readLength = port.BytesToRead;
  70.                 byte[] buff = new byte[readLength];
  71.                 port.Read(buff, 0, buff.Length);
  72.                 if (buff.Length != 0)
  73.                 {
  74.                     
  75.                     cmd.Delete(ByteToStr(new byte[] { buff[0] }));
  76.                     main.DealRes(buff);
  77.                 }
  78.             }
  79.         });
  80.     }
  81. }
复制代码
创建一个串口类,主要用于发送指令和接收返回的数据  3. 监测串口的插拔状态:框架内置了方法可以监控串口的变化,只需要重写该方法即可
  1. protected override void WndProc(ref Message m)
  2. {
  3.     try
  4.     {
  5.         // Windows消息编号
  6.         if (m.Msg == 0x219)
  7.         {
  8.             if ((bool)portButton1.Tag && !port1.IsOpen && (bool)portButton2.Tag && !port2.IsOpen)
  9.             {
  10.                 PopError("串口1和串口2状态有更新");
  11.             }
  12.             else if ((bool)portButton1.Tag && !port1.IsOpen) {
  13.                 PopError("串口1状态有更新");
  14.             } else if ((bool)portButton2.Tag && !port2.IsOpen) {
  15.                 PopError("串口2状态有更新");
  16.             }
  17.         }
  18.     }
  19.     catch
  20.     {
  21.         Util.PopError("监控串口状态错误");
  22.     }
  23.     base.WndProc(ref m);
  24. }
  25. 监控串口状态
复制代码
监控串口状态  4. 安装NPOI组件实现Excel的读写功能:Excel的读写依赖三方件nuget。
    安装NPOI有两种办法:
    第一种利用Visual Studio导航栏的“工具”->“NuGet包管理器”进行下载,这种比较简单方便,下载后项目可以直接引用使用
    第二种则是手动安装,解决无法在线安装的情况,比如网络受限等:
    a. Nuget下载:可以从官方https://www.nuget.org/downloads进行下载,将下载的nuget.exe拷贝到某个目录,同时在该目录下打开命令窗口。
    b. NPOI安装:在目录A打开命令窗口,执行命令nuget install NPOI -SolutionDirectory 项目根目录 -PackageSaveMode nupkg,安装后会生成一个packages文件
    

    c. 还需要在项目根目录下的.csproj目录下手动添加引入文件,同时注意packages需要和安装后的目录对应,否则引用无效,安装完成后返回VS工具会提示“全部刷新引用”,同意即可。
  1. <Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL">
  2.       <HintPath>.\packages\BouncyCastle.Cryptography.2.2.1\lib\net461\BouncyCastle.Cryptography.dll</HintPath>
  3.     </Reference>
  4.     <Reference Include="Enums.NET, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7ea1c1650d506225, processorArchitecture=MSIL">
  5.       <HintPath>.\packages\Enums.NET.4.0.1\lib\net45\Enums.NET.dll</HintPath>
  6.     </Reference>
  7.     <Reference Include="ICSharpCode.SharpZipLib, Version=1.3.3.11, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
  8.       <HintPath>.\packages\SharpZipLib.1.3.3\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
  9.     </Reference>
  10.     <Reference Include="MathNet.Numerics, Version=4.15.0.0, Culture=neutral, PublicKeyToken=cd8b63ad3d691a37, processorArchitecture=MSIL">
  11.       <HintPath>.\packages\MathNet.Numerics.Signed.4.15.0\lib\net461\MathNet.Numerics.dll</HintPath>
  12.     </Reference>
  13.     <Reference Include="Microsoft.IO.RecyclableMemoryStream, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  14.       <HintPath>.\packages\Microsoft.IO.RecyclableMemoryStream.2.3.2\lib\net462\Microsoft.IO.RecyclableMemoryStream.dll</HintPath>
  15.     </Reference>
  16.     <Reference Include="NPOI.Core, Version=2.6.2.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  17.       <HintPath>.\packages\NPOI.2.6.2\lib\net472\NPOI.Core.dll</HintPath>
  18.     </Reference>
  19.     <Reference Include="NPOI.OOXML, Version=2.6.2.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  20.       <HintPath>.\packages\NPOI.2.6.2\lib\net472\NPOI.OOXML.dll</HintPath>
  21.     </Reference>
  22.     <Reference Include="NPOI.OpenXml4Net, Version=2.6.2.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  23.       <HintPath>.\packages\NPOI.2.6.2\lib\net472\NPOI.OpenXml4Net.dll</HintPath>
  24.     </Reference>
  25.     <Reference Include="NPOI.OpenXmlFormats, Version=2.6.2.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  26.       <HintPath>.\packages\NPOI.2.6.2\lib\net472\NPOI.OpenXmlFormats.dll</HintPath>
  27.     </Reference>
  28.     <Reference Include="SixLabors.Fonts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d998eea7b14cab13, processorArchitecture=MSIL">
  29.       <HintPath>.\packages\SixLabors.Fonts.1.0.0\lib\netstandard2.0\SixLabors.Fonts.dll</HintPath>
  30.     </Reference>
  31.     <Reference Include="SixLabors.ImageSharp, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d998eea7b14cab13, processorArchitecture=MSIL">
  32.       <HintPath>.\packages\SixLabors.ImageSharp.2.1.4\lib\net472\SixLabors.ImageSharp.dll</HintPath>
  33.     </Reference>
  34.     <Reference Include="System.ComponentModel.DataAnnotations" />
  35.     <Reference Include="System.Configuration" />
  36.     <Reference Include="System.Core" />
  37.     <Reference Include="System.DirectoryServices" />
  38.     <Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  39.       <HintPath>.\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
  40.     </Reference>
  41.     <Reference Include="System.Numerics" />
  42.     <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  43.       <HintPath>.\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
  44.     </Reference>
  45.     <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  46.       <HintPath>.\NPOISystem.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  47.     </Reference>
  48.     <Reference Include="System.Runtime.Serialization" />
  49.     <Reference Include="System.Security" />
  50.     <Reference Include="System.Security.AccessControl, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  51.       <HintPath>.\packages\System.Security.AccessControl.6.0.0\lib\net461\System.Security.AccessControl.dll</HintPath>
  52.     </Reference>
  53.     <Reference Include="System.Security.Cryptography.Xml, Version=6.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  54.       <HintPath>.\packages\System.Security.Cryptography.Xml.6.0.1\lib\net461\System.Security.Cryptography.Xml.dll</HintPath>
  55.     </Reference>
  56.     <Reference Include="System.Security.Principal.Windows, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  57.       <HintPath>.\packages\System.Security.Principal.Windows.5.0.0\lib\net461\System.Security.Principal.Windows.dll</HintPath>
  58.     </Reference>
  59.     <Reference Include="System.Text.Encoding.CodePages, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  60.       <HintPath>.\packages\System.Text.Encoding.CodePages.5.0.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
  61.     </Reference>
复制代码
配置引用内容

    d. 导出Excel和读取Excel网上案列较多你再扩展。

来源:https://www.cnblogs.com/codeOnMar/archive/2023/11/28/17861081.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具