Microsoft Office 2021-2024 Look

Fully implemented BCGControlBar Pro (MFC)

Not available BCGSuite (MFC)

Not available BCGControlBar for .NET

The library offers Microsoft Office 2021-2024 and the Microsoft 365 look and feel for application components. This theme can be applied to the various sets of controls, such as ribbons, menus, toolbars, docking panels, and others.

The key features of this visual theme are

  • Windows 11-inspired UI ("Fluent Design") with rounded corners (ribbon panels, buttons, edit/combo boxes, and other controls).
  • Full-screen backstage view with a "back" circular button and new navigation pane look.
  • Ribbon tabs transition effect.

Office 2021-2024 colorful style (green accent color):

Office 2021-2024 colorful style (green accent color):

Office 2021-2024 Ribbon backstage view (white style):

Office 2021-2024 Ribbon backstage view (white style):

Office 2021-2024 dark style:

Office 2021-2024 dark style:

Sample code:

// Application class is derived from CBCGPWinApp
CMyApp::CMyApp()
{
	// Specify accent color:
	CBCGPVisualManager2022::SetAccentColor(
		CBCGPVisualManager2022::VS2012_Green);

	// Enable Office 2022 look:
	SetVisualTheme(
		BCGP_VISUAL_THEME_OFFICE_2022_COLORFUL);
}