全部博文(1293)
发布时间:2016-06-29 16:41:32
不能盲目将HTML中所有的图片转换成二进制来存储,当图片越来越大时,image的data域会变得非常大,从而导致无法通过data来读取图片。 图片数据读不出来的现象: 由于很多情况是不清楚图片的,处理HTML的图片问题,还是使用相对路径来处理。 附将图片转为data数据的方法: private string ReplaceFileSyste.........【阅读全文】
发布时间:2016-06-29 16:41:01
public static string ByteArray2String(byte[] contentByte) { string result = string.Empty;&nbs.........【阅读全文】
发布时间:2016-06-20 15:19:35
foreach (Control c in this.Controls) c.Enabled = false;参考网址:http://zhidao.baidu.com/link?url=T9wkzy_Mes2azMx8W9guZ0PYwvRJByicosVv8RICxq8020WRErVf5jZvKjZ5tPxxx6E49qYq-BaQXI3bQZYc__......【阅读全文】
发布时间:2016-06-20 15:15:09
public static List<CLocalTabStruct.ScreenLableItem> GetXmlLabelNameList(string fileFullName) { List<CLocalTabStruct.ScreenLableItem> listLabelItem = n.........【阅读全文】
发布时间:2016-06-17 14:43:47
效果图: 同时滚动和选中两个DGV的行。 关键代码: 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.Reflection; namespace Sync.........【阅读全文】