Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS Tech Support » CExtMdiWindowsListDlg Collapse All
Subject Author Date
Lars Mohr Jan 21, 2009 - 10:20 AM

Dear Support Team,


is there any possibility to exchange the CListBox in the CExtMdiWindowsListDlg with a right theme control listBox?Or do you support a CExtListBox?


Thank you!


 


 


 

Lars Mohr Jan 22, 2009 - 1:37 PM

thanks...


 

Technical Support Jan 22, 2009 - 12:43 PM

We added the following lines into the beginning of the ExtMdiWindowsListDlg.h file:

#if (!defined __EXT_SCROLLWND_H)
            #include <ExtScrollWnd.h>
#endif 

The CExtMdiWindowsListDlg contains the following property:
   CExtWFF< CListBox > m_wndListWindows;

We have replaced it with the following one:
   CExtNCSB < CExtWFF < CListBox > > m_wndListWindows;
Now the list box inside MDI Windows dialog looks as you requested.

We do not have the CExtListBox class. We assume the CExtNCSB < CExtWFF < CListBox > > template based class can be a CExtListBox class. If you need fully re-painted list box window, then you can use the CListBoxCustomPainted or CListBoxMenuLike classes implemented as part of the ProfUIS_Controls sample application.