7
Xamarin'de, View.IOnTouchListener
arabirimini uygulayan bir sınıfı kodladım. İşte View.IOnTouchListener arabiriminin uygulanması
throw new NotImplementedException()
kodu yerine,
IDisposable.Dispose
ve
Android.Runtime.IJavaObject.Handle
kod öğeleri için ihtiyacım var hangi değerleri
public class OnTouchListener : View.IOnTouchListener
{
public bool OnTouch (View v, MotionEvent e)
{
return true;
}
void IDisposable.Dispose()
{
throw new NotImplementedException();
}
IntPtr Android.Runtime.IJavaObject.Handle {
get {
throw new NotImplementedException();
}
}
}
? peşin
Teşekkür