所以我有一个从 wxPanel 继承的 MyPanel 类:
class MyPanel : public wxPanel
{
public:
MyPanel(wxWindow* parent) : wxPanel(parent){}
void OnMouseMove(wxMouseEvent& event);
private:
DECLAER_EVENT_TABLE()
};
和下面定义的另一个主要 wxframe:
class mainFrame : public wxFrame
{
...
private:
...
MyPanel* myPanel;
...
wxStaticText* StaticText1;
...
};
StaticText1 最终将被分配为 myPanel 的子项。所以我想在 OnMouseMove() 方法中更新鼠标光标的坐标
我想知道如何访问 StaticText1 并更新内容。