Hi Miroslav,
it does not seem to me that the textbox is getting the focus:
RadWindow
.Prompt(new DialogParameters()
{
Header =
"Create a new Folder",
Content =
"Please enter the name of the new Folder:",
Closed = (
object sender, WindowClosedEventArgs e) =>
{
if (true == e.DialogResult && !string.IsNullOrEmpty(e.PromptResult))
{
string folderName = e.PromptResult;
}
}
});
Any workaround?
Is it possible to active the OK button only when text has been entered?