C# Windows 应用程序中的图像映射编程
我想编写一个使用地图图像的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,简单地开始:
OnMouseUp
事件,使用MouseEventArgs
中的 X 和 Y 值,以便您知道用户单击的位置,然后将其转换为有意义的内容,并查找相关的数据库中的信息。您必须为您的问题添加更多细节才能获得更详细的答案。
Well, to start simply:
OnMouseUp
event of the image, use the X and Y values from theMouseEventArgs
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.