随笔分类 -  Console

文本文件从磁盘读取、写入
摘要:本文转自CSDN博客:http://blog.csdn.net/anchenyanyue/article/details/7666370 1 using System; 2 using System.Text; 3 using System.IO; 4 5 namespace XXXX.... 阅读全文

posted @ 2015-01-07 22:08 ultrastrong 阅读(338) 评论(0) 推荐(0)

Lable 控件 -- 用代码改变要显示字体的颜色
摘要:lable控件怎么改变显示字体的颜色代码如下:1 string color = "#B72C34";2 3 this.lbl.ForeColor = System.Drawing.ColorTranslator.FromHtml(color);*解说:1. 字符串 c... 阅读全文

posted @ 2014-12-27 18:25 ultrastrong 阅读(603) 评论(0) 推荐(0)