Hello World Xamarin 表示 Visual Studio

在如第一個示例中所述成功安裝 Xamarin 之後,是時候啟動第一個示例應用程式了。

第 1 步:建立一個新專案

在 Visual Studio 中,選擇 New - > Project - > Visual C# - > Cross-Platform - > Blank App(Xamarin.Forms Portable)

將應用程式命名為 Hello World 並選擇建立專案的位置,然後單擊確定。這將為你建立一個包含三個專案的解決方案:

  1. HelloWorld(這是你放置邏輯和檢視的位置,即可移植專案)
  2. HelloWorld.Droid(Android 專案)
  3. HelloWorld.iOS(iOS 專案)

StackOverflow 文件

第 2 步:調查樣本

建立解決方案後,即可部署示例應用程式。開啟位於可移植專案根目錄中的 App.cs 並調查程式碼。如下所示,樣本的 Contents 是 StackLayout,其中包含 Label

using Xamarin.Forms;

namespace Hello_World
{
    public class App : Application
    {
        public App()
        {
            // The root page of your application
            MainPage = new ContentPage
            {
                Content = new StackLayout
                {
                    VerticalOptions = LayoutOptions.Center,
                    Children = {
                        new Label {
                            HorizontalTextAlignment = TextAlignment.Center,
                            Text = "Welcome to Xamarin Forms!"
                        }
                    }
                }
            };
        }
        protected override void OnStart()
        {
            // Handle when your app starts
        }
        protected override void OnSleep()
        {
            // Handle when your app sleeps
        }
        protected override void OnResume()
        {
            // Handle when your app resumes
        }
    }
}

第 3 步:啟動應用程式

現在只需右鍵單擊要啟動的專案(HelloWorld.DroidHelloWorld.iOS),然後單擊 Set as StartUp Project。然後,在 Visual Studio 工具欄中,單擊 Start 按鈕(類似於播放按鈕的綠色三角形按鈕)以在目標模擬器/模擬器上啟動應用程式。