I used Infragistics ver 11.2.
I want to delete this button
How can i ?
Hello Min,
Please take a look on attached sample with one possible solution. If you have any questions, feel free to write me
Regards
Here is the sample
Hello,
If you need any additional assistance don’t hesitate to ask.
Hi~ Thank U for user answer.
One more question .
I use vb.net & Infragistics 11.2 ver.
I want block click the File menu. How can i do?
Hi,
There are different approaches. You could try:
Option 1: It is possible to hide your File menu through properties:
Ribbon.FileMenuStyle = None. Please do not forget to set property Office2007UICompatibility = False
Option 2: You could use one of these two events depending of settings in FileMenuStyle property. For example:
private void ultraToolbarsManager1_BeforeApplicationMenuDropDown(object sender, CancelEventArgs e)
{
e.Cancel = true;
}
or
private void ultraToolbarsManager1_BeforeApplicationMenu2010Displayed(object sender, BeforeApplicationMenu2010DisplayedEventArgs e)
Let me know if you have any questions.