Completed
Last Updated: 02 Nov 2018 09:02 by Dimitar
ADMIN
Dimitar
Created on: 22 Oct 2018 04:52
Category: RibbonBar
Type: Bug Report
0
FIX. RadToggleButton does not have proper styles when added to quick access toolbar
To reproduce:
- Add a RadToggleButtonElement to the quick access toolbar.

Workaround:
RadToggleButton button = new RadToggleButton();
button.Text = "Test";        
button.Height = 17;

RadHostItem host = new RadHostItem(button);
host.MinSize = new Size(50, 0);
host.MaxSize = new Size(0, 17);
host.StretchVertically = false;

radRibbonBar1.QuickAccessToolBarItems.Add(host);

0 comments