C# Windows 应用程序中的图像映射编程

发布于 2024-11-14 06:31:57 字数 164 浏览 2 评论 0原文

我想编写一个使用地图图像的Windows应用程序,当用户单击图像中的某个位置时,该应用程序会显示有关保存的位置的一些信息在数据库文件中。

我该如何编写地图代码? 我可以使用什么组件? 我可以使用什么库? 任何信息都可以帮助我...

I Want to write a Windows Application that uses an Image of map and when a user clicks on a location in the Image,the application shows some information about the location which are saved in a a database file.

how can i write codes for map?
what component can i use?
what library can i use?
any information can help me ...

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

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

发布评论

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

评论(1

就此别过 2024-11-21 06:31:57

好吧,简单地开始:

  1. 找到地图的图像。
  2. 把它写在你的表格上。
  3. 处理图像的 OnMouseUp 事件,使用 MouseEventArgs 中的 X 和 Y 值,以便您知道用户单击的位置,然后将其转换为有意义的内容,并查找相关的数据库中的信息。

您必须为您的问题添加更多细节才能获得更详细的答案。

Well, to start simply:

  1. Find an image of the map.
  2. Put it on your form.
  3. Handle the OnMouseUp event of the image, use the X and Y values from the MouseEventArgs so you know where the user clicked, then translate it to something meaningful, and lookup the relevant information in the database.

You'll have to add a little more detail to your question to get a more detailed answer.

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