Ribbon Bar Notification Badges
BCGControlBar Pro (MFC)
BCGSuite (MFC)
BCGControlBar for .NET
A notification badge is a small-size element placed near control and indicating some event associated with control. For example, you may add a numeric badge with a number of new mails to the "Mail" button or the Security Alert icon to the link control.
Ribbon controls with notification badges:
Sample code:
// Specify numeric badges:
BCGPCMD_MGR.SetNumericNotificationBadge(
ID_FILE_OPEN, 1);
BCGPCMD_MGR.SetNumericNotificationBadge(
ID_CTRL_BADGE1, 5);
BCGPCMD_MGR.SetNumericNotificationBadge(
ID_CTRL_BADGE2, 2, RGB(111, 0, 192));
// Specify custom badge:
BCGPCMD_MGR.SetCustomNotificationBadge(
ID_CTRL_BADGE3, ID_CUSTOM_DATA);