Search found 4 matches

by Usky_yahooo
Tue Oct 09, 2007 11:26 am
Forum: C++ Development
Topic: window bring to front, raise, show, TaskBarIcon, tooltips
Replies: 13
Views: 11583

Maybe this code will work right void wxTaskBarIconEx::OnTaskBarIconLeftClicked(wxTaskBarIconEvent& event) { if(m_pMainFrame->IsIconized()) { m_pMainFrame->Show(true);//Show the frame m_pMainFrame->Iconize(false);//restore the taskbar window } else { m_pMainFrame->Show(false);//hide the window m_...
by Usky_yahooo
Thu Oct 04, 2007 7:31 pm
Forum: C++ Development
Topic: A wxWidgets problem about the minimizebox on application
Replies: 0
Views: 351

A wxWidgets problem about the minimizebox on application

Now I can control the system menu!But I found a problem I can not understand.It's that when I press the application's top-right minimizebox.The application minimized.But actually I have captured the minimizing system message.In my mind this action should take no effects.I also tested the system menu...
by Usky_yahooo
Thu Oct 04, 2007 4:39 pm
Forum: C++ Development
Topic: How to manipulate System Menu using wxWidgets
Replies: 1
Views: 622

How to manipulate System Menu using wxWidgets

I want to change the default system menu action such as minimize the whole window!Any one knows how?
by Usky_yahooo
Thu Oct 04, 2007 2:03 pm
Forum: C++ Development
Topic: How to make notify icon using wxWidgets
Replies: 1
Views: 713

How to make notify icon using wxWidgets

I want to use wxWidgets to make notify icon so that the program can hide and only be activated through the task bar!Anyone can help me?