Hey Telerik,
1. The code on your demo side http://demos.telerik.com/silverlight/#Touch/PdfViewer/FirstLook. looks really cool. I have copied the sample code to my project. But I noticed that I need the dll
xmlns:telerikQuickStart="clr-namespace:Telerik.Windows.Controls.QuickStart;assembly=QuickStart.Common"
How can I get this? Do you have this in the trial version? I did not see it in my trial version. I think without this the code could not recognize
Visibility="{Binding OpenCommandDescriptor.IsEnabled, Converter={StaticResource BoolToVisibilityConverter}}" in the xaml file.
2. Also When I try to load the pdf file by setting the URI in C# code.
this
.pdfViewer.DocumentSource =
new
PdfDocumentSource(
new
System.Uri(
"DocumentSource;component/Sample.pdf"
, System.UriKind.Relative));
It will complain the the namespace of
PdfDocumentSource
could not be found. Which reference I need to add? I do have
FixedDocumentViewers.dll and Documents.Fixed.dll included in my reference. But why it still not working? Please see the attached image.
Thanks
Qiping