骄傲小公主

导航

2014年7月5日 #

winform窗体中查找控件

摘要: private RichTextBox FindControl() { RichTextBox ret = null; try { Control[] controls = Application.OpenForms["MainForm"].Controls.Find("txtContent", ... 阅读全文

posted @ 2014-07-05 19:27 骄傲小公主 阅读(1126) 评论(0) 推荐(0) 编辑

XML操作

摘要: public class XMLOperation { private static readonly ILog log = LogManager.GetLogger(typeof(mainForm)); Message mesg = null; XmlDocument doc; public XM... 阅读全文

posted @ 2014-07-05 12:15 骄傲小公主 阅读(436) 评论(0) 推荐(0) 编辑

C#时间格式

摘要: 可以这样写: date.ToString("yyyy年MM月", DateTimeFormatInfo.InvariantInfo) 日期转化二 DateTime dt = DateTime.Now; Label1.Text = dt.ToString();//2005-11-5 13:21:25 ... 阅读全文

posted @ 2014-07-05 11:53 骄傲小公主 阅读(441) 评论(2) 推荐(2) 编辑

C#比较两个时间大小

摘要: DateTime t1 = Convert.ToDateTime("2012-12-31 23:59:00"); DateTime t2 = Convert.ToDateTime("2013-1-1 00:01:00"); TimeSpan ts = t2 - t1; int ss = Conve... 阅读全文

posted @ 2014-07-05 11:42 骄傲小公主 阅读(621) 评论(2) 推荐(0) 编辑