You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I sometime got this Null exception in my app. I fixed this issue by adding a check of _reader variable:
protected override void OnTap(System.Windows.Input.GestureEventArgs e)
{
base.OnTap(e);
if (_reader != null)
{
_reader.Focus();
}
}
Thanks for greate project!
The text was updated successfully, but these errors were encountered:
I sometime got this Null exception in my app. I fixed this issue by adding a check of _reader variable:
protected override void OnTap(System.Windows.Input.GestureEventArgs e)
{
base.OnTap(e);
if (_reader != null)
{
_reader.Focus();
}
}
Thanks for greate project!
The text was updated successfully, but these errors were encountered: