XAML 设计未在 Visual Studio 中加载

Tal*_*lib 4 c# wpf xaml wpf-controls xaml-designer

我试图在 Visual Studio 中加载 xaml 文件,但它抛出异常,但当我运行应用程序时,设计和所有功能都绝对没问题。例外情况如下:

InvalidCastException: Unable to cast object of type 'System.Windows.Application' to type 'Omnia.PIE.VTA.App'.
   at Omnia.PIE.VTA.MainWindow.get_Instance()
   at Omnia.PIE.VTA.Views.AccountHolderInfo.UserControl_Loaded(Object sender, RoutedEventArgs e)
   at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
   at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
   at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
   at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)
   at System.Windows.BroadcastEventHelper.BroadcastEvent(DependencyObject root, RoutedEvent routedEvent)
   at System.Windows.BroadcastEventHelper.BroadcastLoadedEvent(Object root)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
Run Code Online (Sandbox Code Playgroud)

提前抱歉,但我是视觉工作室的初学者,花了几个小时后我仍然无法解决它。

Tal*_*lib 6

我能够解决这个问题。这与项目缓存有关。我按照以下步骤解决了它:

  1. 关闭 Visual Studio
  2. 删除了 .vs、bin 和 obj 文件
  3. 启动VS并清理项目
  4. 重建项目

经过这些步骤后,我能够打开所有 .xaml 文件。