Posted 16 Dec 2010 Link to this post
I created this work around for the time being. RadWindow.Prompt(
"Please enter your password to continue"
,
new
EventHandler<WindowClosedEventArgs>(OnClosed));
private
void
OnClosed(
object
sender, WindowClosedEventArgs e)
{
switch
(e.PromptResult)
case
"pw1"
:
BolSuperAdmin =
false
;
return
"pw2"
true
btnRefreshXML.Visibility = Visibility.Visible;
default
RadWindow.Prompt(
"Please enter your password to continue!"
, OnClosed);
break
}
Posted 20 Dec 2010 Link to this post