https://www.nuget.org/packages/TouchSam/
Install-Package TouchSam
- Android
- iOS
- UWP
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle savedInstanceState)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(savedInstanceState);
Xamarin.Forms.Forms.Init(this, savedInstanceState);
TouchSam.Droid.TouchDroid.Preserve();
LoadApplication(new App());
}
}
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
TouchSam.iOS.TouchIOS.Preserve();
return base.FinishedLaunching(app, options);
}
}
In file App.xaml.cs, enter DataGridSam.UWP.Initialize.Init();
as below
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
Frame rootFrame = Window.Current.Content as Frame;
if (rootFrame == null)
{
rootFrame = new Frame();
rootFrame.NavigationFailed += OnNavigationFailed;
// Preserve assembly important TouchUWP class
var assemblys = new List<Assembly>();
assemblys.Add(typeof(TouchSam.UWP.TouchUWP).GetTypeInfo().Assembly);
TouchSam.UWP.TouchUWP.Preserve();
Xamarin.Forms.Forms.Init(e);
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
}
Window.Current.Content = rootFrame;
}
...
}
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:touch="clr-namespace:TouchSam;assembly=TouchSam"
x:Class="Sample.Views.TestView">
<StackLayout touch:Touch.Color="Accent"
touch:Touch.Tap="{Binding CommandTap}"
touch:Touch.LongTap="{Binding CommandLongTap}"
touch:Touch.LongTapLatency="200"
BackgroundColor="Beige"
Padding="15">
<Label Text="Click me!"/>
</StackLayout>
</ContentPage>