Hello sir,
Please Help Me... How to Hide the ApplicationMenu from infragistics.
Hello Jayamankickam,
First disable Office2007UICompatibility property followed by setting the FileMenuButton property to "None". Note, this will result in displaying the standard file menu.
this.ultraToolbarsManager1.Office2007UICompatibility = false;
this.ultraToolbarsManager1.Ribbon.FileMenuStyle = Infragistics.Win.UltraWinToolbars.FileMenuStyle.None;
Let me know if you have any questions regarding this matter.
Thank you So much sir. It's Working. how to disable only Menu list in application menu such as SAVE,OPEN,EXIT etc...
Hello,
Could you please clarify your question? From my understanding if you hiding the FileMenu there should no longer be an application menu along your ribbon.
Hello Sir,
sorry for my late reply. Yes I want hide only the file menu.
Hello Jay,
The Icon you see in place of the FileMenu button is what's known as the Form's title bar icon which is used to Minimize, Maximize and Close the form. This can be removed by setting the form's ShowIcon property to False.
Hello Michael, I tried
MyForm.ShowIcon = False in load part
but title bar icons (Minimize, Maximize and Close) are still showing
whats the way to hide them?