Hi i want to work only with QAT from xamRibbon without the ribbon.
Is there any way to disable/hide/remove the button Show bellow the ribbon or even the all the Customize quick acess toolbar?
How to change the backgorund of buttons added to QAT? i tried to change by code the background and the style but none of them worked.
ButtonTool bt = new ButtonTool();bt.Id="undoTool";bt.Caption="Undo";bt.Background = Brushes.Red;bg1.Children.Add(bt);
Note bg1 is my buttongroup
NovabaseACD said: Hi i want to work only with QAT from xamRibbon without the ribbon.
NovabaseACD said:Is there any way to disable/hide/remove the button Show bellow the ribbon or even the all the Customize quick acess toolbar?
NovabaseACD said: How to change the backgorund of buttons added to QAT? i tried to change by code the background and the style but none of them worked.
i found a way to hide the QuickCustomizeMenu but i can only do taht after a user click on it, on
private
void QuickAccessToolbar_QuickCustomizeMenuOpening(object sender, Infragistics.Windows.Ribbon.Events.ToolOpeningEventArgs e)
{e.Tool.Visibility = Visibility.Collapsed;}
But how to call it from the load?