一些方法
baidu_17070785
这个作者很懒,什么都没留下…
展开
-
Edit Control按回车表示点击Button1
BOOL CTestDlg::PreTranslateMessage(MSG* pMsg) { if(pMsg->message == WM_KEYDOWN) { if(pMsg->wParam == VK_RETURN)//当按下键为回车键时 { OnButton1();//调用按钮函数 return TRUE; }转载 2014-07-19 15:58:26 · 906 阅读 · 0 评论 -
CString to string
stackoverflow从转载 2014-07-02 20:20:18 · 356 阅读 · 0 评论 -
C# 调用System.data.compute(……)简化一些简单的计算(+-*/%,abs())
using System; using System.ComponentModel; using System.Data; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form1 : Form {转载 2014-11-17 15:36:01 · 685 阅读 · 0 评论