简体   繁体   English

如何在应用程序中做教程并在 Xamarin 中首次启动时启动它?

[英]How to do tutorial in app and launch it just on first start up in Xamarin?

I am trying to find out how to do tutorial on first start up of app in xamarin.我正在尝试了解如何在 xamarin 中首次启动应用程序的教程。 When I try to search that it throws just a plenty tutorials how to start programming in xamarin.当我尝试搜索它时,它会抛出大量教程如何在 xamarin 中开始编程。 Do you have any ideas how can i add tutorial to my app but just on first start up?你有什么想法我如何在我的应用程序中添加教程,但只是在第一次启动时?

using Essentials VersionTracking使用 Essentials 版本跟踪

if (VersionTracking.IsFirstLaunchEver)
{
  MainPage = // your Tutorial page
}
else 
{
  MainPage = // your standard app first page
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM