Xamarin.Forms Editor.TextChanged事件不会触发

时间:2016-10-24 03:47:53

标签: c# xamarin xamarin.forms

我尝试使用Editor在我的共享代码中获取Xamarin.Forms的值。

https://developer.xamarin.com/api/type/Xamarin.Forms.Editor/

Editor introduce = new Editor { Text = "", BackgroundColor = Color.FromHex("F0C640"), TextColor = Color.White, FontSize = 10, HeightRequest = 50 };
introduce.TextChanged += (sender, e) =>
{
    System.Diagnostics.Debug.WriteLine("introduce");
    System.Diagnostics.Debug.WriteLine(e.NewTextValue);
    System.Diagnostics.Debug.WriteLine(e.OldTextValue);
};

但事件永远不会触发...... 什么时候应该触发?我猜想当你专注于Editor块时,它的内容发生了变化,但它对我的测试没有影响......

我也尝试了Completed事件,但仍未触发。

introduce.Completed += (sender, e) =>
{
    System.Diagnostics.Debug.WriteLine("introduce");
};

谢谢!

0 个答案:

没有答案