This question is locked. New answers and comments are not allowed.
Hi Telerik,
I'm using RadWindow and RadHtmlPlaceHolder as given below. Code behind is executed on a button click in the page where Radwindow control is placed.
XAML
<telerikNavigation:RadWindow KeyDown="RadWindow_KeyDown" Name="windowTest" Width="820" Height="900" telerik:StyleManager.Theme="Windows7">
<telerik:RadHtmlPlaceholder Name="htmlTest" KeyDown="RadWindow_KeyDown"></telerik:RadHtmlPlaceholder>
</telerikNavigation:RadWindow>
C#
Uri testURI = new Uri("http://www.google.com", UriKind.Absolute);
windowTest.Show();
htmlClaimWebForm.SourceUrl = testURI ;
Question: Is that possible to enable ALT+TAB on the silverlight control which will switch between RadWindow opened and the parent page?
Thank You.