02 2013 档案
SQLite Paging操作类
摘要:public List<PfmErrorMDL> LSelectPaging(string strColumns, string strWhere, string strOrder, int pageSize, int currentIndex, out int recordCount) { if (string.IsNullOrEmpty(strColumns)) strColumns = "*"; if (string.IsNullOrEmpty(strWhere)) strWhere = "1=1"; if (string.IsNull 阅读全文
posted @ 2013-02-22 15:06 fery 阅读(196) 评论(0) 推荐(0)
Winform窗体对键盘的响应处理
摘要:Winform组合键响应处理://Support Shortcut Key private void MainForm_KeyUp(object sender, KeyEventArgs e) { if ((e.Modifiers & Keys.Control) != 0 && e.KeyCode == Keys.G) { FrmGoto frmGoto = new FrmGoto(); frmGoto.StartPosition = FormStartPosition.CenterScreen; frmGoto.Show(); } } 设置Form 窗体中默认的回车及 阅读全文
posted @ 2013-02-18 10:23 fery