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 » About CExtRibbonBar Collapse All
Subject Author Date
tera t Dec 12, 2007 - 12:51 AM

The question 1

Set the following order,
g_PaintManager.m_bIsWin2000orLater = false;

The application falls when I click here.
http://www.yukai.jp/~ifreeta/20071212/image01.jpg

The question 2
I want to judge a click of here.
http://www.yukai.jp/~ifreeta/20071212/image01.jpg
Please teach a way

Technical Support Dec 14, 2007 - 8:42 AM

We have just added a new FAQ article in response to your question:

How to disable fade-out menu animation in CExtRibbonBar and CExtRibbonPage?

Technical Support Dec 13, 2007 - 4:43 AM

You should not modify g_PaintManager.m_bIs***. They affect which APIs are invoked when the app is running on different Windows OS versions.

The ribbon file button is a kind of ribbon gallery button. So, you should override the following virtual method in your CExtRibbonBar-derived class to catch the item selection in the ribbon gallery control

      virtual void OnRibbonGalleryItemSelEndOK(
            CExtRibbonGalleryWnd & wndRG,
            CExtRibbonGalleryPopupMenuWnd * pGalleryPopup,
            CExtRibbonButtonGallery * pRibbonGalleryTBB,
            CExtToolBoxWnd::TOOLBOX_ITEM_DATA * pTBCI
            );


tera t Dec 13, 2007 - 5:13 PM

Hello.

I want to stop a fading function in CExtRibbonBar.
Is it impossible?