0
Answer

how to set owner for rad confirm window ( Rad Alert Window)

pm

pm

11y
2.8k
1
hi,

how to set owner for radwindow. ( Radwindow.Alert/Confirm Window) in wpf viewmodel,

the code is

 var parameters = new DialogParameters
                {

                    Owner = Application.Current.Windows[0],
                                        or
                    Owner = Application.Current.MainWindow,

                    Content = "Messages",

                    OkButtonContent ="Yes",

                    CancelButtonContent ="No"

                };
                parameters.Closed += PlanPopupWindowOnClosing;
                RadWindow.Confirm(parameters);

it does not works

can any one help me?


Thanks & Regards

MUTHUKUMAR