博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2009年8月4日

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Drawing;using System.IO;namespace Microsoft.Form.Base{ class ImageToByte { /// <summary> /// 图片转换成字节流 /// </summary> /// <param name="img">要转换的Image对象</param> /// <retu 阅读全文

posted @ 2009-08-04 23:02 codingsilence 阅读(340) 评论(0) 推荐(0) 编辑

摘要: 一、给GridControl添加按钮列 最近搞项目,要给CrigControl添加按钮列。由于英文不好走了很多弯路。 现在终于搞好了。。 写下来,以防以后忘记 把列的ColumnEdit属性设置为RepositoryItemButtonEdit 把TextEditStyle属性设置为HideTextEditor; 把Buttons的Kind属性设置为Glyph; 把Buttons的HorzAlignment属性设置为Near; 如果要用到事件的话,还要注册事件。。。 列名.ButtonClick += new ButtonPressedEventHandler(列名_ButtonClick); 阅读全文

posted @ 2009-08-04 20:07 codingsilence 阅读(995) 评论(0) 推荐(0) 编辑