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 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?
Hello Jayamanickam,
You can remove the left area of the application menu by using a creation filter. This has been discussed here regarding the right area. You should be able to use the same concept for the left portion.
http://ko.infragistics.com/community/forums/t/17198.aspx
Hello Michael,
When I Click the ApplicationMenu(Left Side Corner) do not show below menu item. How Can I hide that. I attach Screen shot
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 Sir,
sorry for my late reply. Yes I want hide only the file menu.