You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
KryptonInputBox should return null instead of "" when user clicks the "X"(close or cancel) button on the top right, so that user's intention of inputing empty string can be distiguished from clicking the "X" button
var input = KryptonInputBox.Show("prompt", "title", "defaultvalue");
if (input==null)
{
//user pressed the "X" button
}
else if (input =="")
{
//user cleared the inputarea.
}
The text was updated successfully, but these errors were encountered:
KryptonInputBox should return null instead of "" when user clicks the "X"(close or cancel) button on the top right, so that user's intention of inputing empty string can be distiguished from clicking the "X" button
The text was updated successfully, but these errors were encountered: