在我的 UWP 中,我有一个TextBox,Button.我想在它为空Button时禁用它。TextBox
我在启动时试过这个 -
if (string.IsNullOrEmpty(hmmtxtBox.Text))
{
hmmbtn.IsEnabled = false;
}
private void HmmtxtBox_TextChanged(object sender, TextChangedEventArgs e)
{
hmmbtn.IsEnabled = true;
}
它工作得很好,但是当我清除 时TextBox,Button仍然启用。如果为空,我想禁用TextBox,反之亦然。
拉莫斯之舞
相关分类