Search found 4 matches

by william.li
Tue Nov 03, 2009 8:34 am
Forum: wxWidgets Development (Chinese)
Topic: =自我介绍=(新人可来这里对自己作自我介绍)
Replies: 150
Views: 355924

业余程序员,还不知道什么时候能够转正。
喜欢wxWidgets是因为它的非windows特性:开源和免费,强大而自给自足的类库,还有完备的文档和成熟的论坛,一切都是那么的完美。
by william.li
Tue Nov 03, 2009 4:12 am
Forum: Compiler / Linking / IDE Related
Topic: compile errors of wxWidgets-2.8.10\contrib\build\plot
Replies: 1
Views: 913

compile errors of wxWidgets-2.8.10\contrib\build\plot

Hi, I had compiled wxWidgets successfully with MinGW before. After half a year, when I do some additional compilation in my laptop, it fails to pass. For example, I want to compile plot module in contrib directory, but only get below errors. I am not familiar with makefile, so would anybody help to ...
by william.li
Fri Feb 27, 2009 11:46 am
Forum: C++ Development
Topic: How to inform brother control to repaint itself?
Replies: 3
Views: 1594

Hi Grrr, Thanks. The frame is a wxDocMDIChildFrame object, I haven't derived customized frame class to override function. Acctually, my current solution is to get frame by GetParent() then get canvas pointer by FindWindowById() to call canvas update and refresh functions. However, both your solution...
by william.li
Fri Feb 27, 2009 8:07 am
Forum: C++ Development
Topic: How to inform brother control to repaint itself?
Replies: 3
Views: 1594

How to inform brother control to repaint itself?

Hi, I build a control panel (wxPanel) to change image in a canvas (wxScrolledWindow). Both the panel and canvas are the children of one frame(wxMDIChildFrame). The frame is created in a wxView::OnCreate() function. When user click one button in panel , the image data of canvas will be modified, I im...