Good Day!
I have my library for resources - Resources.dll.
And I have UserControl with RibbonBar. But if I try to use text from my resource library for ApplicationMenu.Text property then Text is empty.
Here is my ascx
result of that is empty text for ApplicationMenu.
But if I put the next code on ascx
<%=Resources.AdminMainMenu.Menu %>
then I can see text from resource library
Any idea?
Thanks,
Eugene
I have my library for resources - Resources.dll.
And I have UserControl with RibbonBar. But if I try to use text from my resource library for ApplicationMenu.Text property then Text is empty.
Here is my ascx
<telerik:RadRibbonBar ID="RadRibbonBar1" runat="server" Skin="Office2010Blue" Width="100%"> <ApplicationMenu Text='<%=Resources.AdminMainMenu.Menu %>' > <Items> <telerik:RibbonBarApplicationMenuItem Text="Exit" ImageUrl="~/Media/Images/Icons/16x16_exit.png" /> </Items> </ApplicationMenu></telerik:RadRibbonBar>result of that is empty text for ApplicationMenu.
But if I put the next code on ascx
<%=Resources.AdminMainMenu.Menu %>
then I can see text from resource library
Any idea?
Thanks,
Eugene