Hi. I have an old Silverlight application that uses the Telerik Silverlight Map control using the Microsoft Bing Map provider. Silverlight is obsolete, but we are trying to keep it running for as long as we can.
The Telerik Silverlight Bing Map stopped working. The map control loads, but no map is being displayed. A http packet trace shows an HTTP 404 error against http://dev.virtualearth.net when requesting clientaccesspolicy.xml. See screenshot:
Is there a way to fix this?
Hello,
I have an old Silverlight application using the `Windows 7` theme.
In this application, I'm using many controls and the `app.xaml` file contains the following theme files:
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/System.Windows.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.Docking.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.GridView.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.ImageEditor.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.Input.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.Navigation.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.RibbonView.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.RichTextBoxUI.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Controls.xaml" />
<ResourceDictionary Source="/VisManager;component/Themes/Themes/Windows7/Telerik.Windows.Documents.xaml" />
</ResourceDictionary.MergedDictionaries>
After installation Ui for Silverlight R1 2022 SP1, the application no more starts: it complains about a referenced static resource that is missing, in the `Telerik.Windows.Controls.RichTextBoxUI.xaml` file.
Replacing this file with the one from version R1 2022 makes it work again.
You should really test Silverlight application while you're adding new functions!
Hello,
I have an old Silverlight application with the following in the App.xaml file:
<Style TargetType="tk:GridViewCell" BasedOn="{StaticResource GridViewCellCoreStyle}" />
After updating to the latest, the application no more works: it crashes as soon it displays a GridView control, without any useful error message. It takes me a long time to find the error because I can no more run the application with a debugger and I have no useful error message.
As the application was running fine before I updated Telerik UI for Silverlight, I suppose that the above line is the culprit. Unfortunately, I don't know the previous version of Telerik UI for Silverlight that was used for the application.
I hope this is enough for you to find the bug.
Best regards
using (Stream stream = viewModel.OpenStream())
{
if (stream != null)
{
using (ZipPackage zipPackage = ZipPackage.Create(stream))
{
zipPackage.AddStream(new MemoryStream(GetXmlData(tutorial)),viewModel.Filename+".xml");
}
}
}
var stream = Application.GetResourceStream(
new
Uri(
"SampleData/doc.pdf"
, UriKind.Relative)).Stream;
pdfViewer.DocumentSource =
new
PdfDocumentSource(stream);
Stream stream = File.OpenRead(@
"\\192.168.1.100\pdf$\doc.pdf"
);
pdfViewer.DocumentSource =
new
PdfDocumentSource(stream);
Stream stream = File.OpenRead(@
"C:\pdf\doc.pdf"
);
pdfViewer.DocumentSource =
new
PdfDocumentSource(stream);
I have tried to implement a line chart along with Notes,. but the problem arises when 2 notes are very close to each other they overlap and are not readable. I tried adding margin but could not achieve a good result even with rotation it looks very absurd.
I am trying to figure out a way where I can display the notes in one series alternatively top or down. But I can't find anything. I only got an option to display notes top or down per series. Need help with this?
Or if any other way I can achieve it with a readable format