我在哪里可以找到输入面板,但在工具箱中找不到它?
我想处理SIP。所以我已经阅读了这篇文章 http://www.christec.co.nz/blog/档案/42 。我在参考文献中没有找到 Microsoft.WindowsCE.Forms.dll。然后我下载了该dll并尝试将其添加到项目中,然后出现错误,无法添加,因为它不是在Microsoft.Phone.Runtime环境中构建的。 那么我怎样才能获得dll和输入面板呢?
I want to handle SIP. So i have gone through the article http://www.christec.co.nz/blog/archives/42
. I don't find Microsoft.WindowsCE.Forms.dll in the references. Then i downloaded the dll and tried to add it to the project, then it gives an error that it can't be added because its not build in Microsoft.Phone.Runtime environment.
So how can i get the dll and input panel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该 dll 适用于 Windows CE,与 Windows Phone 7 不同。WP7 的 SIP 由操作系统处理,并在文本输入控件接收焦点时自动显示(
TextBox
、PasswordBox
等)。有一篇文章讨论创建保加利亚语键盘,但它也需要自定义输入控件。
That dll is for Windows CE, which is NOT the same as Windows Phone 7. The SIP for WP7 is handled by the operating system and is displayed automatically when a text input control receives focus (
TextBox
,PasswordBox
, etc).There is an article that discusses creating a Bulgarian keyboard, but it requires a custom input control, too.