This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Show the view model. | |
/// </summary> | |
[MvxCommand("ShowCommand")] | |
public void Show() | |
{ | |
this.ShowViewModel<MainViewModel>(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Android.Content; | |
using Android.Support.V4.View; | |
using Android.Util; | |
using Android.Views; | |
namespace InterceptingViewPagerExample.Droid | |
{ | |
class InterceptingViewPager : ViewPager | |
{ |
NewerOlder