This question is locked. New answers and comments are not allowed.
I have an HTMLPlaceholder in a RadWindow that loads content from an external source. The RadWindow is modal. Here is a code snippet:
Sometimes (not always), the content of the HTMLPlaceHolder gets offset slightly. Always down and to the right... I include a screen grab that illustrates this. This can happen on load, or can happen when the content of the HTMLPlaceHolder loads a new page (internal to the displayed site, not by changing the content in Silverlight).
Any ideas?
I did go back and verify that if I removed all the other controls from the RadWindow that the problem does in fact still occur.
<
telerikNavigation:RadWindow
x:Name
=
"radWindow"
Width
=
"1200"
Height
=
"630"
CanClose
=
"True"
CanMove
=
"False"
ResizeMode
=
"NoResize"
ModalBackground
=
"#5D7C7373"
WindowStartupLocation
=
"CenterScreen"
Closed
=
"radWindow_Closed"
>
<
StackPanel
>
<
telerik:RadHtmlPlaceholder
x:Name
=
"RadHtmlPlaceholder1"
SourceUrl
=
"Blank.htm"
RespectSilverlightLayoutMeasure
=
"True"
Height
=
"550"
></
telerik:RadHtmlPlaceholder
>
<
Border
BorderThickness
=
"2"
Width
=
"1400"
BorderBrush
=
"#FFEAEAEA"
/>
<
Button
x:Name
=
"btnCloseWindow"
Height
=
"20"
Width
=
"100"
Content
=
"Close Window"
Click
=
"btnCloseWindow_Click"
VerticalAlignment
=
"Bottom"
Margin
=
"10,10,10,10"
/>
</
StackPanel
>
</
telerikNavigation:RadWindow
>
Sometimes (not always), the content of the HTMLPlaceHolder gets offset slightly. Always down and to the right... I include a screen grab that illustrates this. This can happen on load, or can happen when the content of the HTMLPlaceHolder loads a new page (internal to the displayed site, not by changing the content in Silverlight).
Any ideas?
I did go back and verify that if I removed all the other controls from the RadWindow that the problem does in fact still occur.