G
N
I
D
A
O
L
上一页 1 ··· 8 9 10 11 12
摘要: 【C#】组件发布:MessageTip,轻快型消息提示窗 201610212046更新 更新至2.0版,基本完全重写,重点: 改为基于原生LayeredWindow窗体和UpdateLayeredWindow API呈现动画,完全摒弃.net Form,这种消息框用前者再适合不过,后者对于这种场景过 阅读全文
posted @ 2022-09-19 00:21 firespeed 阅读(97) 评论(0) 推荐(0)
摘要: 1 /* 2 * 1、网上流传最广的应该是隐藏法了,原理就是把旧窗口隐藏掉,再打开新窗口。 具体的代码如下: 3 */ 4 //在旧窗口中的合适位置写这些代码 5 NewForm fm=new NewForm() //新建一个NewForm窗口(NewForm是自己定义的Form) 6 this.H 阅读全文
posted @ 2022-09-17 19:04 firespeed 阅读(1238) 评论(0) 推荐(0)
摘要: 1 //C# winform窗口打开特效及窗口位置居中 2 //在启动一个程序时,我们希望窗口显示的位置处于屏幕的正中心,可以如下设置: 3 MainForm mainForm = new MainForm(); 4 mainForm.StartPosition = FormStartPositio 阅读全文
posted @ 2022-09-17 18:55 firespeed 阅读(1339) 评论(0) 推荐(0)
摘要: https://www.brad-smith.info/blog/archives/972 过去,我使用 Windows 预览处理程序作为在我的 Windows 窗体应用程序中预览文档的便捷方式。这样做的主要优点是不必为(可能无限)范围的文件格式编写我自己的预览逻辑,并使用自 Windows Vis 阅读全文
posted @ 2022-09-16 09:42 firespeed 阅读(979) 评论(0) 推荐(0)
摘要: 开源Math.NET基础数学类库使用总目录 1.开源Math.NET基础数学类库使用(01)综合介绍 2.开源Math.NET基础数学类库使用(02)矩阵向量计算 3.开源Math.NET基础数学类库使用(03)C#解析Matlab的mat格式 4.开源Math.NET基础数学类库使用(04)C#解 阅读全文
posted @ 2022-09-16 08:51 firespeed 阅读(166) 评论(0) 推荐(0)
摘要: var pdfReader = new PdfReader("xxx.pdf"); StreamWriter output = new StreamWriter(new FileStream("处理结果.txt", FileMode.Create)); int pageCount = pdfRead 阅读全文
posted @ 2022-09-16 00:42 firespeed 阅读(364) 评论(0) 推荐(0)
摘要: .NET(C#) ExcelLibrary读写Excel(.xls,.xlsx)示例代码(不用安装Office) ExcelLibrary是一个比较轻量级的Excel读写组件,由国人开发的。可以读写 xls 和 xlsx 格式的 Excel。支持简单的公式,可插入图片,对于格式的设置也不是很丰富,可 阅读全文
posted @ 2022-09-16 00:32 firespeed 阅读(158) 评论(0) 推荐(0)
摘要: 代码如下: //创建excelobject missing = System.Reflection.Missing.Value;Excel.Application app = new Excel.Application();app.Application.Workbooks.Add(true);Ex 阅读全文
posted @ 2022-09-16 00:28 firespeed 阅读(42) 评论(0) 推荐(0)
摘要: 一个 dotnet 数据库 orm 框架 https://github.com/leadnt/FluentDAO 一个基于 HttpClient 的开源项目。只需要定义c#接口并修改相关特性,即可异步调用远程http接口的客户端库。 https://github.com/dotnetcore/Web 阅读全文
posted @ 2022-08-17 08:12 firespeed 阅读(49) 评论(0) 推荐(0)
摘要: 最近工作中遇到一些关于字符串截取的问题,发现用正则表达式截取更为方便,想起来快两年没有写过博客了,开始上Demo小案例,希望对大家也有用~案例背景:我想要在一串包含数据结果的字符串中截取出来里面包含的数字,数字的类型可能是整数、小数、正负数、科学计数法等。案例实现:上代码 private void 阅读全文
posted @ 2022-03-24 00:50 firespeed 阅读(676) 评论(0) 推荐(0)
摘要: 1 命名空间及继承命名空间1:System.Windows.Forms 继承1:Object→MarshalByRefObject→Component→Control→ListControl→ComboBox 命名空间2:System.Windows.Controls 继承2: Object→Dis 阅读全文
posted @ 2022-03-23 20:59 firespeed 阅读(5504) 评论(0) 推荐(1)
摘要: OutlookGrid: grouping and arranging items in Outlook style A grid allowing grouping and arranging items, much like Outlook. Download source files - 13 阅读全文
posted @ 2022-01-26 12:35 firespeed 阅读(240) 评论(0) 推荐(0)
摘要: 来源说明: https://jingyan.baidu.com/article/a681b0de1e3d103b18434601.html 其它参考: Windows Server2012 R2 无法安装.NET Framework 3.5的解决方法 很多Win下的服务,都会基于.NET Frame 阅读全文
posted @ 2022-01-20 12:19 firespeed 阅读(1515) 评论(0) 推荐(0)
摘要: 博客园主题练习资料备忘 https://www.yuque.com/awescnb https://www.yuque.com/awescnb/user/tmpomo https://www.yuque.com/awescnb/user/rycpvv https://www.yuque.com/aw 阅读全文
posted @ 2022-01-15 00:43 firespeed 阅读(47) 评论(0) 推荐(0)
摘要: I am making use of Font Awesome's icons to render basic font images within my C# WPF application. During run-time when I attempt to alter the TextBloc 阅读全文
posted @ 2019-07-06 21:50 firespeed 阅读(590) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12