在我们的xamarin.forms应用程序中,我们在ContentPage中创建10个文本框。然后,我们将钩住这些文本框的TextChanged事件。
样例代码
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class PinView : ContentPage
{
protected override void OnBindingContextChanged()
{
base.OnBindingContextChanged();
for (int i = 0; i < 10; i++)
{
Entry entry = new Entry();
entry.TextChanged += OnEntryTextChanged;
}
}
private void OnEntryTextChanged(object sender, TextChangedEventArgs e)
{
//Some Code
}
}
现在我的问题是我应该关心取消这些事件吗?如果“是”,请告诉我如何以及何时。
守候你守候我
相关分类