Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我该如何创建类似于 facebook 的标记图像功能?我的想法是我希望用户能够单击图像的区域以对其进行标记。我也想存储用户点击的坐标。我将 wxWidgets 与 Python2.7.2 一起使用。
有什么建议么?
您将需要使用 wx.GetMousePosition 之类的东西来获取坐标。我可能会绑定到 wx.EVT_LEFT_DOWN 或 wx.EVT_LEFT_UP。wxPython 站点上有一个wiki 页面,其中包含更多信息。或者您可能会发现阅读文档很有帮助。