This question is locked. New answers and comments are not allowed.
I'm executing following code:
this is how my event looks like
When i execute this code, i'm not seeing an alert window with caption "cancel changes" (see attachment for what is displayed)
If i don't set the OnClosed event in the call to alert then the dialog window does show the correct caption.
what am i missing?
RadWindow.Alert( new DialogParameters() { Header = new ContentPresenter() { Content = "Cancel Changes" } //, }, new EventHandler<WindowClosedEventArgs>(OnClosed));this is how my event looks like
private static void OnClosed(object sender, WindowClosedEventArgs e) { }When i execute this code, i'm not seeing an alert window with caption "cancel changes" (see attachment for what is displayed)
If i don't set the OnClosed event in the call to alert then the dialog window does show the correct caption.
what am i missing?