Windows CE:具有视频聊天功能的全屏 .net 应用程序路线图

发布于 2024-09-24 01:25:27 字数 225 浏览 3 评论 0原文

我必须开发应在 Windows CE 启动后立即启动的应用程序。用户应该看到“操作系统启动”屏幕,然后看到应用程序表单,而无需观察桌面和桌面。其他应用程序图标。应用程序应提供一些功能+通过本地网络启动视频聊天的功能(不需要互联网)。

请给我在 .net CF 平台上为 Windows CE 开发这样的东西的路线图:体系结构、技术、您个人选择的附加软件和软件。我在实施过程中需要注意一些陷阱。

先感谢您!

I have to develop application that should launch as soon as windows CE is started up. User should see the "OS-starting" screen and then the application form without observing desktop & other apps icons. Application should provide some functions + function to start video chat via the local network (no Internet is required).

Please, give me the roadmap to develop such a thing for Windows CE on .net CF platform: architecture, technologies, additional software you'd personally choose & some pitfalls I shall take care about for implementation.

Thank you in advance!

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

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

发布评论

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

评论(1

韬韬不绝 2024-10-01 01:25:27

那么您要求我们在 SO 上为您构建整个系统?这是一个巨大的要求,因为构建嵌入式设备并不是一项简单的任务(无论营销人员怎么说)。

您将需要:

  • 一个可以“调整”的平台,这样您就无法显示桌面。
  • 删除 explorer.exe,或者至少删除 HKLM\Init 中对它的引用。
  • 编写一个 C/C++ 启动器并让它 从 HKLM\Init 启动< /a>.
  • 编写一个应用程序来提供“一些功能”。
  • 编写(或购买)一个库或应用程序,为您的“视频聊天”
  • 硬件提供摄像头,或带有 CE 驱动程序的摄像头(以及支持该接口的 CE 硬件)
  • 满足您要求的硬件/外壳
  • 经验或获得时间使用 CE 的经验(您提出问题的事实表明您没有很多这样的经验)
  • 可以处理您想要执行的图形和网络负载的硬件
  • 进行大量练习

使用 P/Invoking I 我无法真正评论架构,因为我不知道您的需求、现有资产或经验可能是什么。我将使用 OpenNETCF.IoC 框架来处理 UI、IoC 和事件聚合问题。您可能需要创建自定义控件。

So you're asking us to architect the entire thing for you here on SO? This is a huge request, as building embedded devices is not a simple task (no matter what the marketing people might say).

You're going to need:

  • a platform that you can "adjust" so you can not show the desktop.
  • to remove explorer.exe, or at least the reference to it in HKLM\Init.
  • to write a C/C++ launcher and have it launch from HKLM\Init.
  • to write an app to provide "some functions."
  • to write (or buy) a library or app that provides your "video chat"
  • hardware with a camera, or a camera with a CE driver (and CE hardware that supports the interface)
  • hardware/enclosure that meets your requirements
  • Experience or time to get that experience working with CE (the fact you're asking the question indicates to me you don't have a lot of this)
  • Hardware that can handle the graphics and network load of what you want to do
  • Loads of practice with P/Invoking

I can't really comment on architecture since I have no idea what your requirements, existing assets or experience might be. I'd use the OpenNETCF.IoC framework for dealing with the UI, IoC and event aggregation issues. You'll likely need to create custom controls.

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