﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>C++博客-慢慢来-文章分类-控件开发</title><link>http://www.cppblog.com/findingworld/category/1972.html</link><description>C++绝对是个好东西</description><language>zh-cn</language><lastBuildDate>Wed, 21 May 2008 08:28:50 GMT</lastBuildDate><pubDate>Wed, 21 May 2008 08:28:50 GMT</pubDate><ttl>60</ttl><item><title>关于soft KeyBoard</title><link>http://www.cppblog.com/findingworld/articles/9019.html</link><dc:creator>小苏</dc:creator><author>小苏</author><pubDate>Mon, 26 Jun 2006 08:36:00 GMT</pubDate><guid>http://www.cppblog.com/findingworld/articles/9019.html</guid><wfw:comment>http://www.cppblog.com/findingworld/comments/9019.html</wfw:comment><comments>http://www.cppblog.com/findingworld/articles/9019.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.cppblog.com/findingworld/comments/commentRss/9019.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/findingworld/services/trackbacks/9019.html</trackback:ping><description><![CDATA[
		<p>      前几天接到一个关于软键盘(soft KeyBoard)的项目，到网上Google了一下，网上只有COnscreenKeyboardDlg这么个东东，可是在用的时候又有问题，大家对这个东东想必也很了解吧，当你想用它在窗体的Edit里面输入东西的时候，却总是不行，总是失去Focus，那个郁闷啊(无法形容)。搞了两天半，现在公布解决方法(简单的要死，晕)：<br />      1.在头文件中(COnscreenKeyboardDlg.h)加入：<br />         afx_msg int OnMouseActivate( CWnd* pDesktopWnd, UINT nHitTest, UINT message );<br />      2.在COnscreenKeyboardDlg.cpp中：<br />         BEGIN_MESSAGE_MAP(COnscreenKeyboardDlg, CDialog)<br />         ....   //(保留原有函数映射)<br />         ON_WM_MOUSEACTIVATE()//加入<br />         END_MESSAGE_MAP()<br />      3.在cpp中加入：        </p>
		<p>            int COnscreenKeyboardDlg::OnMouseActivate( CWnd* pDesktopWnd, UINT nHitTest, UINT message )<br />            {</p>
		<p>             return MA_NOACTIVATE;<br />             <br />            }<br /><br />下载地址：<a href="/Files/findingworld/OnscreenKeyboardDlg.rar">http://www.cppblog.com/Files/findingworld/OnscreenKeyboardDlg.rar</a></p>
<img src ="http://www.cppblog.com/findingworld/aggbug/9019.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/findingworld/" target="_blank">小苏</a> 2006-06-26 16:36 <a href="http://www.cppblog.com/findingworld/articles/9019.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>