This question is locked. New answers and comments are not allowed.
Hi,
I have a silverlight project that I display pages in a frame. I have a page with HTMLPlaceHolder and in code behind, I add some HTML format text to the HTMLSource. When i run my application, nothing displays on the screen.
Please note I set silverlight plug-in to windowless true.
Can someone help please?
I do appreciate your help.
Thanks,
Kam
<Grid x:Name="LayoutRoot" > <Grid.ColumnDefinitions> <ColumnDefinition Width="*"></ColumnDefinition> <ColumnDefinition Width="10"></ColumnDefinition> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="10"></RowDefinition> <RowDefinition Height="*"></RowDefinition> <RowDefinition Height="10"></RowDefinition> </Grid.RowDefinitions> <!--<ScrollViewer x:Name="PageScrollViewer" Grid.Column="0" Grid.Row="1" Style="{StaticResource PageScrollViewerStyle}">--> <telerik:RadHtmlPlaceholder x:Name="htmlnbspanel" Margin="5" Background="White" ></telerik:RadHtmlPlaceholder> <!--</ScrollViewer>--> </Grid> public Home() { InitializeComponent(); string strstatement = string.Empty; strstatement = "<P >This study is all about understanding the importance of ....... – by connecting together information on actual use of these services with the findings collected by Survey on our opinions and preferences as consumers.";htmlnbspanel.HtmlSource = strstatement; }