如何运行Main.axml?

How to run Main.axml?

您好,我在 Visual Studio 2015
上安装了 Xamarin 并想创建一个 Android 应用程序。

我想要运行此页面上的步骤:https://msdn.microsoft.com/en-us/library/mt488769.aspx
(文件新建 Project/Templates/Visual C#/Cross Platform/Blank App (Native Portable))

当我调试这个空白项目时,
此 window 在启动时打开:


但是我想 运行 下面 window (Main.axml) 位于 Reources/layout

我错过了什么?
提前致谢。

    public class MainActivity : Activity
{
    protected override void OnCreate(Bundle bundle)
    {
        base.OnCreate(bundle);

        // Set our view from the "main" layout resource
        SetContentView(Resource.Layout.Main);
    }

}

检查线路

SetContentView(Resource.Layout.Main);

在您的物理设备上调试它或使用 GenyMotion 模拟器,这个内置的模拟器很丑...