New to Telerik UI for WinForms? Download free 30-day trial

Item Display Modes

RadOfficeNavigationBar offers item display modes that indicate whether the items are visualized by image only or full text. This is controlled by the UseCompactFont and the ItemsDisplayStyle properties.

Compact


            this.radOfficeNavigationBar1.UseCompactFont = true;
            this.radOfficeNavigationBar1.ItemsDisplayStyle = DisplayStyle.Image;

WinForms RadOfficeNavigationBar Item Display Mode Compact

Full


            this.radOfficeNavigationBar1.UseCompactFont = false;
            this.radOfficeNavigationBar1.ItemsDisplayStyle = DisplayStyle.ImageAndText;

WinForms RadOfficeNavigationBar Item Display Mode Full