您的位置:首页 > 编程语言 > Python开发

wxpython

2015-11-01 15:38 543 查看

获取窗口的方法

wxWindow *FindWindow(long winid) const;
wxWindow *FindWindow(const wxString& name) const;

    // Find a window among any window (all return NULL if not found)
static wxWindow *FindWindowById( long winid, const wxWindow *parent = NULL );
static wxWindow *FindWindowByName( const wxString& name,
                                   const wxWindow *parent = NULL );
static wxWindow *FindWindowByLabel( const wxString& label,
                                    const wxWindow *parent = NULL );
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: