This question is locked. New answers and comments are not allowed.
Hi,
I've created a new silverlight project and add:
and in the code file i add:
when i run the application i see the window but i don't see the htmlplaceholder, why?
if i copy the htmlplaceholder markup outside the radwindow i see google web site.
what am i missing?
I've created a new silverlight project and add:
| <UserControl xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" x:Class="SilverlightApplication2.Page" |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| Width="400" Height="300"> |
| <Grid x:Name="LayoutRoot" Background="White"> |
| <telerikNavigation:RadWindow Name="RadWindow1" Width="600" Height="600" Header="Test" > |
| <telerik:RadHtmlPlaceholder Name="RadHtmlPlaceholder1" SourceUrl="http://www.google.com/"></telerik:RadHtmlPlaceholder> |
| </telerikNavigation:RadWindow> |
| </Grid> |
| </UserControl> |
and in the code file i add:
| public partial class Page : UserControl |
| { |
| public Page() |
| { |
| InitializeComponent(); |
| RadWindow1.Show(); |
| RadWindow1.LocationChanged += new RoutedEventHandler(RadWindow1_LocationChanged); |
| } |
| void RadWindow1_LocationChanged(object sender, RoutedEventArgs e) |
| { |
| RadHtmlPlaceholder1.InvalidateArrange(); |
| } |
| } |
when i run the application i see the window but i don't see the htmlplaceholder, why?
if i copy the htmlplaceholder markup outside the radwindow i see google web site.
what am i missing?
