C#
SeanyBrake
这个作者很懒,什么都没留下…
展开
-
C#开发环境搭建/C#介绍/helloWorld代码——day01
c#原创 2016-12-29 21:10:24 · 21242 阅读 · 8 评论 -
C#读写注册表
引入命名空间:[html] view plain copyusing Microsoft; using Microsoft.Win32; 写注册表:[csharp] view plain copyRegistryKey key = Registry.LocalMachine; //在HKEY_LOCAL_MACHINE\SOFTWARE下新建名为VangoCalibration的注册表转载 2017-06-14 13:50:06 · 1225 阅读 · 0 评论 -
C#从list里查找某个链表里的子项
list listTemp;listTemp.Find(x)=>{return x.strTemp.Equals("s")};原创 2017-07-02 21:11:05 · 2526 阅读 · 0 评论 -
C#串口操作类
串口进行操作的类,其中包括写和读操作,类可设置串口参数、设置接收函数、打开串口资源、关闭串口资源,操作完成后,一定要关闭串口、接收串口数据事件、接收数据出错事件、获取当前全部串口、把字节型转换成十六进制字符串等功能。转载 2017-06-18 12:03:11 · 901 阅读 · 0 评论 -
解决检索COM类工厂中CLSID为{ }组件失败
检索 COM 类工厂中 CLSID 为 {XXXX-XXXX-XXX-XXXXX-XXX} 的组件时失败,原因是出现以下错误: 80040154。 如以上问题出现,多半是因为COM控件未在目标机器上面注册造成的 解决方法: Resvr32 .net中引用控件的名称 如果注册成功,问题不在出现 但是如果是在x64位的系统中,即使控件注册成功,错误依照提示,是因为大多数第三转载 2017-05-20 11:16:21 · 26440 阅读 · 2 评论 -
C# 播放音频文件
properties 配置app.config 获取配置信息:Settings.Default.配置名 获取配置资源:Properties.Resources.资源名,不带后缀dll:system.dll 类:System.Media.SoundPlayer 资源存放处:properties 声明:System.Media.SoundPlayer Player= new System.M原创 2017-05-19 08:42:45 · 1249 阅读 · 0 评论 -
C#控件CheckListBox的使用
CheckListBox的使用原创 2017-04-16 16:13:41 · 2183 阅读 · 0 评论 -
C# 操作EXCEL文件
C#操作EXCEL原创 2017-04-12 23:13:48 · 710 阅读 · 0 评论 -
C#调用cmd命令
C#调用cmd命令转载 2017-04-15 16:59:59 · 17526 阅读 · 0 评论 -
Winform 发邮件---C#
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net.原创 2017-04-28 22:02:26 · 1253 阅读 · 1 评论 -
C# File操作类
using System; using System.Text; using System.IO;转载 2017-04-17 21:38:17 · 6698 阅读 · 0 评论 -
C#遍历DataSet中数据的几种方法总结
遍历DataSet转载 2017-04-12 21:54:21 · 12412 阅读 · 0 评论 -
C#文件操作----winform
C#文件操作 winfrom转载 2017-04-07 08:05:56 · 754 阅读 · 0 评论 -
C# XML读写---Winform
XML读写转载 2017-03-18 10:15:48 · 3895 阅读 · 0 评论 -
WINFORM的MVC设计模式
MVC模式主要解决的问题就是将表示层和业务层进行分离,在以往做WINFORM项目的时候,通常都是将很多的逻辑代码直接写在了Form.cs代码的事件里,这样的话业务逻辑就和界面紧耦合在一起了,现在我们采用MVC来解耦。 首先建立Model:[csharp] view plain copyusing System; using System.Collections.Generic;转载 2017-03-03 16:24:29 · 10880 阅读 · 2 评论 -
C#生成二维码及打印
//生成二维码图片代码 public static void GetPrintPicture(Bitmap image, AssetEntity asset, PrintPageEventArgs g) { int height = 5; Font font = new Font("宋体", 10f); ...原创 2018-02-27 19:11:01 · 9634 阅读 · 2 评论