我尝试使用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");
};
谢谢!