This is a migrated thread and some comments may be shown as answers.

Multiple RadWindws and an OOB application issue - Focus Manager Error

2 Answers 25 Views
Window
This is a migrated thread and some comments may be shown as answers.
Richard
Top achievements
Rank 2
Iron
Veteran
Iron
Richard asked on 24 Apr 2013, 09:55 AM

Hi, I'm having a problem with using the Rad Windows in a very specific way.  I have a button that opens two RadWindows side by side. If the user is running the app OOB then clicking one of the windows always crashes the application. This is only in OOB and only with more than one window showing.

To reproduce:
Create a button...
private void Button_Click(object sender, RoutedEventArgs e)
{
    RadWindow window1 = new RadWindow
        {
            Width = 150,
            Height = 150,
            Content = new TextBox {Text = "Window1"},
            WindowStartupLocation = WindowStartupLocation.Manual,
            Top = 10,
            Left = 10
        };
 
 
    RadWindow window2 = new RadWindow
        {
            Width = 150,
            Height = 150,
            Content = new TextBox { Text = "Window2" },
            WindowStartupLocation = WindowStartupLocation.Manual,
            Top = 10,
            Left = 300
        };
 
    window1.Show();
    window2.Show();
}

Click the button and then click into the two popup windows.
Note: Has to be running OOB ! 

Attached is a screen shot of it failing. 

Thanks,
Richard

2 Answers, 1 is accepted

Sort by
0
Accepted
Alek
Telerik team
answered on 29 Apr 2013, 10:57 AM
Hello Richard,

Thank you for sending us the code snippet. 

We managed to reproduce the issue and it is under investigation. 

The fix for it should be available in the next internal build.

Regards,
Alek
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

0
Richard
Top achievements
Rank 2
Iron
Veteran
Iron
answered on 03 May 2013, 11:42 AM
Thanks Alek, I'll keep an eye out for that. 
Tags
Window
Asked by
Richard
Top achievements
Rank 2
Iron
Veteran
Iron
Answers by
Alek
Telerik team
Richard
Top achievements
Rank 2
Iron
Veteran
Iron
Share this question
or