C#
文章平均质量分 74
aa80303857
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
小工具URL编码
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Da...原创 2017-02-24 14:00:34 · 132 阅读 · 0 评论 -
js调用本地调用
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.D...原创 2018-04-04 13:01:20 · 584 阅读 · 0 评论 -
历史最全的C#开发ActiveX
--资料来源互联网 第一步:创建C#类库项目,修改“名称”为HuaYun.ActiveX 第二步:修改AssemblyInfo.cs,增加代码 //自定添加 [assembly: AllowPartiallyTrustedCallers()] 第三步:右键工程,“添加”-“用户控件”命名为“ActiveXControl.cs” 第四步:按照第三步的方法添加接...2018-05-29 11:36:41 · 261 阅读 · 0 评论 -
C#打印图片,转载一下
打印的原理是:生成mdi文件,系统碰到mdi的时候会自动以打印的方式处理。所以,不管用什么模板,什么方式;能在PrintPage事件处理中,生成一张要打印内容的图片就OK了! C#实现打印源码如下: #region 打印 private void btnPrint_Click(object sender, EventArgs e) { ...原创 2018-07-09 15:49:36 · 1362 阅读 · 0 评论 -
C#生成条形码打印
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Printing; using System.Linq; using System.Text; usin...原创 2018-07-09 16:00:10 · 2668 阅读 · 0 评论 -
Unicode与中文互转
直接上代码吧,没什么好说的,资料来自互联网。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.W...原创 2017-03-15 14:09:05 · 137 阅读 · 0 评论
分享