在 windows mobile 6.5 (Spinner) 中加载通知
我正在 Motorola ES400 并且需要在我的应用程序正忙于执行某些操作时向用户显示通知 在 EMDK。 我在EMDK的帮助中搜索并找到了 Symbol.MT2000.UserInterface.Spinner 类 但在调用此类时出现空异常错误 这是代码:
`
Symbol.MT2000.UserInterface.Spinner sp = new Symbol.MT2000.UserInterface.Spinner();
//This is a delegate of the DeleteAll function
sp.BeginInvoke(DeleteAll);
`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的空引用可以通过添加
new
关键字来解决,如下所示:只是好奇,您不能将光标设置为等待光标并达到相同的效果吗?
I think your null reference could be solved by adding the
new
keyword, something like this:Just curious, could you not just set the cursor to the wait cursor and achieve the same effect?