This question is locked. New answers and comments are not allowed.
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