项目上的错误和VS上的VS上的redLine都没有错误。 Xamarin

时间:2019-06-20 11:02:16

标签: xamarin xamarin.forms

我的问题是在启动调试中。当我构建项目时,就可以了。但是,当我开始调试时,我有一个错误问题,那就是没有错误。它在方法OnCreate()上。我从svn服务器得到这个项目。下面的鳕鱼和您在scrinshot上看到的错误

http://prntscr.com/o4bnmc http://prntscr.com/o4bnu5

protected override void OnCreate(Bundle bundle)
    {
        base.OnCreate(bundle);

        UserDialogs.Init(this);
        Forms.Init(this, bundle);
        InitLibraries();

        LoadApplication(new App());

        OnNewIntent(Intent);
        if (!string.IsNullOrWhiteSpace(Intent?.Data?.LastPathSegment))
        {
            switch (Intent?.Data?.LastPathSegment)
            {
                case "Search":
                    Console.WriteLine("Search");
                    ShortcutsManager.GoToSearch();
                    break;
                case "OnExecution":
                    Console.WriteLine("On execution documents");
                    ShortcutsManager.GoToOnExecution();
                    break;
                case "InWork":
                    Console.WriteLine("In work documents");
                    ShortcutsManager.GoToInWork();
                    break;
                case "Calendar":
                    Console.WriteLine("Calendar");
                    ShortcutsManager.GoToCalendar();
                    break;
            }
        }
    }

与其他文件在同一文件中的情况相同。例如

 public override void OnBackPressed()
    {
        Page currentPage = GetCurrentPage();

        if (currentPage is LoginPage)
            MoveTaskToBack(true);
        else if (PopupNavigation.PopupStack.Count > 0)
            base.OnBackPressed();
        else if (currentPage is MainMasterDetailPage)
            if ((currentPage as MainMasterDetailPage).Master is FolderMenuPage)
                OnDoubleBackToPressed();
            else
                base.OnBackPressed();
    }

错误是“缺少参考”,但所有参考都在项目上

严重性代码描述项目文件行抑制状态 错误CS0246找不到类型或名称空间名称“应用程序”(您是否缺少using指令或程序集引用?)

0 个答案:

没有答案