摘要:
在软件中需要引用 fastreport 提供的 dll Fastreport 打印需要先在本地生成一个打印文件。 <?xml version="1.0" encoding="utf-8"?> <Report ScriptLanguage="CSharp" DoublePass="true" Repo 阅读全文
摘要:
用了很久的水晶报表,最近经常遇到客户电脑上无法安装水晶报表,只能重装系统解决。决定用最原始的 GDI 绘图来打印报表。 using MySql.Data.MySqlClient; using Newtonsoft.Json; using System; using System.Collection 阅读全文
摘要:
批处理相关文章: 发布QT程序:https://www.cnblogs.com/aitong/p/11623705.html svn拉取,vs编译,dotfuscator混淆https://www.cnblogs.com/aitong/p/10627930.html 先将目录中的文件压缩(格式为 e 阅读全文
摘要:
最近看到一篇关于 开放/封闭原则 的文章:https://blog.csdn.net/weixin_30872337/article/details/98280838 可惜文章里的代码无法运行,所以改写了部分代码,记录下来。 下文采用了策略模式来满足 开放/封闭原则 。 using System; 阅读全文
摘要:
c# 下的代码:https://www.cnblogs.com/aitong/p/10973774.html <?php class People { public $id; public $partnerid; public $satisfaction; public $reqArray; fun 阅读全文
摘要:
在 Mysql 的 information_schema 库中 COLUMNS 表中存放了所有表的所有列。 using MySql.Data.MySqlClient; using System; using System.Collections.Generic; using System.Linq; 阅读全文
摘要:
方法1. 在c#中定义byte[], 交给c++操作 extern "C" __declspec(dllexport) void HelloWorld(char* name) { name[0] = 'c'; } [DllImport("kernel32.dll", CharSet = CharSe 阅读全文
摘要:
private void Dg_SelectedCellsChanged(object sender, SelectedCellsChangedEventArgs e) { Console.WriteLine("start"); foreach (DataGridCellInfo info in d 阅读全文
摘要:
阿里巴巴矢量图标库提供了大量的 SVG 图标:https://www.iconfont.cn/ 但是 WPF 本身不支持 SVG 格式的文件。 方法一:如果对图片的颜色没有要求,那么可以在下载图片时选择:复制 SVG ,然后将文本中的 Path 路径提取出来,多个路径之间用空格隔开。这种方法只能调节 阅读全文
摘要:
C# 的 Http 访问可以使用 .net 自带的 HttpWebRequest, WebClient, HttpClient 类。也可以使用开源库 RestSharp 。 RestSharp 的优点很多,最重要的一点是对于新手来说,Postman 直接提供了 RestSharp 的实现代码。 下面 阅读全文