我希望能够在输入数据后更改background color
的{{1}},因此需要不断检查字段是否为空,但代码不适用于我在应用程序中没有功能,也没有按钮可以使用它,“名称”是Entry field
中Entry field
上设置的名称。
XAML file
答案 0 :(得分:2)
您可以测试Entry
条目中TextChanged
的内容。
示例:
BackgroundColourEntry.TextChanged += (sender, e) =>
{
var entry = sender as Entry;
if (string.IsNullOrEmpty(entry.Text))
{
entry.BackgroundColor = Color.Red;
}
else
{
entry.BackgroundColor = Color.Green;
}
};