RadWindow.Confirm(new DialogParameters() { OkButtonContent = "something", Content = "Some other text" }, (s, e1) =>
{
// do something
});
It will just give me a confirm dialog that has "Telerik.Windows.Controls.DialogParameters" as the content.as if it fail to cast it automatically.
Also tried to declare DialogParameters outside but same error. It works properly if I remove the closed handler, or move the closed handler into DialogParameters though. Is this a bug?