public void Refresh()
		{
			CurrentAdapter?.Refresh();

			var isScrollResetting = NativeLayout != null && NativeLayout.ContentOffset != 0;
			NativeLayout?.Refresh();

			if (isScrollResetting)
			{
				// Raise scroll events since offset has been reset to 0
				InvokeOnScroll();
			}
		}
Beispiel #2
0
 public void Execute(Transaction transaction, BlockHeader block, ITxTracer txTracer)
 {
     CurrentAdapter.Execute(transaction, block, txTracer);
 }