摘要: cordova 双击退出 阅读全文
posted @ 2016-06-15 16:53 听雨萧潇 阅读(1876) 评论(1) 推荐(0) 编辑
摘要: cordova 阅读全文
posted @ 2016-06-03 17:13 听雨萧潇 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1 public static bool TestDatabaseConnection(string server, string connectionString) 2 { 3 bool isSuccess = false; 4 5 ... 阅读全文
posted @ 2015-02-11 19:59 听雨萧潇 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 在学习《构建具有CRUD功能的ASP.NET Web API》一文中,通过产品ID获得产品信息的方法如下:1 public Product GetProduct(int id)2 {3 Product item = repository.Get(id);4 if (item ==... 阅读全文
posted @ 2014-06-17 16:31 听雨萧潇 阅读(336) 评论(0) 推荐(0) 编辑
摘要: SQL语句添加controlC# 1 //读取当天天气和风向 2 string sql = "select * from tb_QiXiang where NameID = 0001 and Date = '" + Convert.ToDateTime(Label3.Text.Trim()) + "... 阅读全文
posted @ 2012-11-15 10:56 听雨萧潇 阅读(115) 评论(1) 推荐(0) 编辑
摘要: 横坐标显示格式化:1 Chart1.ChartAreas["ChartArea1"].AxisX.LabelStyle.Format = "HH:mm";指定间隔:1 Chart1.ChartAreas["ChartArea1"].AxisX.IntervalType = DateTimeIntervalType.Hours;2 Chart1.ChartAreas["ChartArea1"].AxisX.Interval = 2; 阅读全文
posted @ 2012-11-15 10:52 听雨萧潇 阅读(169) 评论(0) 推荐(0) 编辑