This question is locked. New answers and comments are not allowed.
Hello Telerik team,
I am implementing a Silverlight 5 application to a website and one of the requirements is that I need to show some external Html pages embedded as part of my Silverlight UI. WebBrowser control would be fine otherwise, but I can't implement my app as out-of-browser application or configure it as trusted in-browser application.
Is there any RadControl for Silverlight control that could host a HTML page, let's say e.g. www.telerik.com, so that the user could also browse the html page? See my example code below where the 'SomeControl' would be the control that can host HTML page. Is there such control in RadControls for Silverlight product? Or do you have any other ideas how to do the trick?
BR,
Timo
I am implementing a Silverlight 5 application to a website and one of the requirements is that I need to show some external Html pages embedded as part of my Silverlight UI. WebBrowser control would be fine otherwise, but I can't implement my app as out-of-browser application or configure it as trusted in-browser application.
Is there any RadControl for Silverlight control that could host a HTML page, let's say e.g. www.telerik.com, so that the user could also browse the html page? See my example code below where the 'SomeControl' would be the control that can host HTML page. Is there such control in RadControls for Silverlight product? Or do you have any other ideas how to do the trick?
<
navigation:Page
x:Class
=
"MyPage"
xmlns:navigation
=
"clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
d:DesignWidth
=
"640"
d:DesignHeight
=
"480"
Title
=
"MyPage"
>
<
Grid
x:Name
=
"LayoutRoot"
>
<
Grid.RowDefinitions
>
<
RowDefinition
></
RowDefinition
>
<
RowDefinition
></
RowDefinition
>
</
Grid.RowDefinitions
>
<
StackPanel
Orientation
=
"Horizontal"
Grid.Row
=
"0"
>
<
Button
>Button1</
Button
>
<
Button
>Button2</
Button
>
<
Button
>Button3</
Button
>
</
StackPanel
>
<
telerik:SomeControl
Grid.Row
=
"1"
Source
=
"http://www.telerik.com"
></
telerik:SomeControl
>
</
Grid
>
</
navigation:Page
>
BR,
Timo