Hello I am examining PDFViwer PdfViewerNavigator controls. But in both of two, something is gone wrong.
Firstly, in RadPdfViewer cursor property only allows "WaitCursor". When I try to change as "Default", it is not allowed.
Secondly, in RadPdfViewerNavigator localization is not allowed. I override like this:
01.public class PdfViewerLocalization : PdfViewerLocalizationProvider02.{03. public override string GetLocalizedString(string id)04. {05. switch (id)06. {07. case PdfViewerStringId.NavigatorOpenButton: return "Aç";08. case PdfViewerStringId.NavigatorPrintButton: return "Yazdır";09. case PdfViewerStringId.NavigatorPreviousPageButton: return "Önceki";10. case PdfViewerStringId.NavigatorNextPageButton: return "Sonraki";11. case PdfViewerStringId.NavigatorCurrentPageTextBox: return "Şimdiki";12. }13. return base.GetLocalizedString(id);14. } 15. }
But when I execute, It is same. English is not changing.
Could you help me for this situations?
Kind regards.
