在 windows mobile 6.5 (Spinner) 中加载通知

发布于 2024-12-04 09:24:39 字数 1064 浏览 1 评论 0 原文

我正在 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);

`

I'm developing a WM6.5 application on Motorola ES400 and need a notification for users to appear when my application is busy doing something
Searching in EMDK.
I've searched in the Help of EMDK and found the Symbol.MT2000.UserInterface.Spinner class
but in calling of this class I've a null exception error
this is the code :

`
Symbol.MT2000.UserInterface.Spinner sp = new Symbol.MT2000.UserInterface.Spinner();
//This is a delegate of the DeleteAll function
sp.BeginInvoke(DeleteAll);

`

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷雾森÷林ヴ 2024-12-11 09:24:39

我认为您的空引用可以通过添加 new 关键字来解决,如下所示:

Symbol.MT2000.UserInterface.Spinner sp = new Symbol.MT2000.UserInterface.Spinner();

只是好奇,您不能将光标设置为等待光标并达到相同的效果吗?

Cursor.Current = Cursors.WaitCursor;

I think your null reference could be solved by adding the new keyword, something like this:

Symbol.MT2000.UserInterface.Spinner sp = new Symbol.MT2000.UserInterface.Spinner();

Just curious, could you not just set the cursor to the wait cursor and achieve the same effect?

Cursor.Current = Cursors.WaitCursor;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文