mirror of
https://gitee.com/handyorg/HandyControl.git
synced 2024-11-30 02:48:03 +08:00
fixed #460
This commit is contained in:
parent
016fa4bdef
commit
b698d30358
@ -359,6 +359,15 @@ namespace HandyControl.Controls
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void TextBox_TextChanged(object sender, TextChangedEventArgs e) => VerifyData();
|
private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
|
||||||
|
{
|
||||||
|
VerifyData();
|
||||||
|
|
||||||
|
if (!IsSafeEnabled && ShowPassword)
|
||||||
|
{
|
||||||
|
Password = _textBox.Text;
|
||||||
|
SetCurrentValue(UnsafePasswordProperty, Password);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user