- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个 XAMLParseException 让我抓狂!!我在 Visual Studio 1020 中使用 .NET 3.5 这是我的 xaml:
<Window x:Class="WinformsHost.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Advanced Notepad" Height="350" Width="525" Loaded="Window_Loaded">
<DockPanel>
<Menu DockPanel.Dock="Top">
<MenuItem Header="File">
<MenuItem Header="_New" />
<MenuItem Header="_Open..." />
<MenuItem Header="_Save" />
<MenuItem Header="S_ave As..." />
<Separator />
<MenuItem Header="Page Setup" />
<MenuItem Header="Print" />
<Separator />
<MenuItem Header="Exit" />
</MenuItem>
<MenuItem Header="Edit">
<MenuItem Header="Undo" />
<MenuItem Header="Redo" />
<Separator />
<MenuItem Header="Cut" />
<MenuItem Header="Copy" />
<MenuItem Header="Paste" />
<MenuItem Header="Delete" />
<Separator />
<MenuItem Header="Time/Date" />
<Separator />
<MenuItem Header="Preferences" />
</MenuItem>
<MenuItem Header="Format">
<MenuItem Header="Word Wrap" IsCheckable="True" />
<MenuItem Header="Font..." />
</MenuItem>
<MenuItem Header="View">
<MenuItem Header="Status Bar" IsCheckable="True" />
</MenuItem>
<MenuItem Header="Language">
<RadioButton x:Name="rbtCmake" Checked="rbtCmake_Checked" Content="Cmake" />
<RadioButton x:Name="rbtCSharp" Content="C#" />
<RadioButton x:Name="rbtHTML" Content="HTML" />
<RadioButton x:Name="rbtPython" Content="Python" />
<Separator />
<RadioButton x:Name="rbtText" IsChecked="True" Content="Text" />
</MenuItem>
<MenuItem Header="Help">
<MenuItem Header="View Help" />
<Separator />
<MenuItem Header="About Notepad" />
</MenuItem>
</Menu>
<StatusBar x:Name="stbStatus" DockPanel.Dock="Bottom" Visibility="Collapsed">
<TextBlock x:Name="txtStatus" Text="Status" />
</StatusBar>
</DockPanel>
</Window>
那么这可能是我的代码?这是异常(exception)情况:
System.Windows.Markup.XamlParseException was unhandled
Message=Cannot create instance of 'MainWindow' defined in assembly 'Notepad, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Exception has been thrown by the target of an invocation. Error in markup file 'MainWindow.xaml' Line 1 Position 9.
Source=PresentationFramework
LineNumber=1
LinePosition=9
StackTrace:
at System.Windows.Markup.XamlParseException.ThrowException(String message, Exception innerException, Int32 lineNumber, Int32 linePosition, Uri baseUri, XamlObjectIds currentXamlObjectIds, XamlObjectIds contextXamlObjectIds, Type objectType)
at System.Windows.Markup.XamlParseException.ThrowException(ParserContext parserContext, Int32 lineNumber, Int32 linePosition, String message, Exception innerException)
at System.Windows.Markup.BamlRecordReader.ThrowExceptionWithLine(String message, Exception innerException)
at System.Windows.Markup.BamlRecordReader.CreateInstanceFromType(Type type, Int16 typeId, Boolean throwOnFail)
at System.Windows.Markup.BamlRecordReader.GetElementAndFlags(BamlElementStartRecord bamlElementStartRecord, Object& element, ReaderFlags& flags, Type& delayCreatedType, Int16& delayCreatedTypeId)
at System.Windows.Markup.BamlRecordReader.BaseReadElementStartRecord(BamlElementStartRecord bamlElementRecord)
at System.Windows.Markup.BamlRecordReader.ReadElementStartRecord(BamlElementStartRecord bamlElementRecord)
at System.Windows.Markup.BamlRecordReader.ReadRecord(BamlRecord bamlRecord)
at System.Windows.Markup.BamlRecordReader.Read(Boolean singleRecord)
at System.Windows.Markup.TreeBuilderBamlTranslator.ParseFragment()
at System.Windows.Markup.TreeBuilder.Parse()
at System.Windows.Markup.XamlReader.LoadBaml(Stream stream, ParserContext parserContext, Object parent, Boolean closeStream)
at System.Windows.Application.LoadBamlStreamWithSyncInfo(Stream stream, ParserContext pc)
at System.Windows.Application.LoadComponent(Uri resourceLocator, Boolean bSkipJournaledProperties)
at System.Windows.Application.DoStartup()
at System.Windows.Application.<.ctor>b__0(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
at System.Threading.ExecutionContext.runTryCode(Object userData)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)
at System.Windows.Threading.Dispatcher.Invoke(DispatcherPriority priority, Delegate method, Object arg)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at System.Windows.Application.Run()
at WinformsHost.App.Main() in C:\Users\Mohit\Documents\Visual Studio 2010\Projects\Notepad\Notepad\obj\x86\Debug\App.g.cs:line 0
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException: System.Reflection.TargetInvocationException
Message=Exception has been thrown by the target of an invocation.
Source=mscorlib
StackTrace:
at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck)
at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache)
at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache)
at System.Activator.CreateInstance(Type type, Boolean nonPublic)
at System.Windows.Markup.BamlRecordReader.CreateInstanceFromType(Type type, Int16 typeId, Boolean throwOnFail)
InnerException: NLog.Config.NLogConfigurationException
Message=Exception occured when loading configuration from 'C:\Users\Mohit\Documents\Visual Studio 2010\Projects\Notepad\Notepad\bin\Debug\NLog.config'
Source=NLog
StackTrace:
at NLog.Config.XmlLoggingConfiguration..ctor(String fileName, Boolean ignoreErrors)
at NLog.Config.XmlLoggingConfiguration..ctor(String fileName)
at NLog.LogFactory.get_Configuration()
at NLog.LogFactory.GetLogger(LoggerCacheKey cacheKey)
at NLog.LogFactory.GetLogger(String name)
at NLog.LogManager.GetCurrentClassLogger()
at WinformsHost.MainWindow..ctor() in C:\Users\Mohit\Documents\Visual Studio 2010\Projects\Notepad\Notepad\MainWindow.xaml.cs:line 15
InnerException: NLog.Config.NLogConfigurationException
Message=Target console not found.
Source=NLog
StackTrace:
at NLog.Config.XmlLoggingConfiguration.ConfigureRulesFromElement(LoggingConfiguration config, LoggingRuleCollection rules, XmlElement element)
at NLog.Config.XmlLoggingConfiguration.ConfigureFromXmlElement(XmlElement configElement, String baseDirectory)
at NLog.Config.XmlLoggingConfiguration.ConfigureFromFile(String fileName)
at NLog.Config.XmlLoggingConfiguration..ctor(String fileName, Boolean ignoreErrors)
InnerException:
最佳答案
我不认为这确实是一个 XamlParseException:我认为它是一个包含在 XamlParseException 中的 TargetInitationException。看看最终的内部异常:
NLog.Config.NLogConfigurationException Message=Exception occured when loading configuration from 'C:\Users\Mohit\Documents\Visual Studio 2010\Projects\Notepad\Notepad\bin\Debug\NLog.config'
您的配置文件似乎已损坏,可能是由于无效的 XML 或可能由于某些更具体的原因。
当您遇到神秘的 XamlParseException 时,总是值得检查 InnerException 中是否存在 TargetInvocationException(如果存在,则从那里深入研究)。是的,这非常令人困惑和误导!
关于XAMLParseException 让我抓狂!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2039454/
这个 XAMLParseException 让我抓狂!!我在 Visual Studio 1020 中使用 .NET 3.5 这是我的 xaml:
我正在尝试在我的 Silverlight 应用程序中使用第 3 方组件,当我尝试创建控件的实例时,我收到 XamlParseException: {System.Windows.Markup.Xaml
我在设计自己构建的自定义控件的样式时遇到了一些问题。这是控制源: namespace SilverlightStyleTest { public class AnotherControl: T
我在一个非常简单的 wpf 应用程序中正确地在 xaml 代码或属性窗口中设置了窗口图标属性,但 visual studio 总是在运行时抛出 XamlParseException。为什么会这样?(使
当我打开我的 WPF 窗口时出现了这个错误,我不知道是什么导致了这个错误,也不知道如何消除它。错误突出显示并指向 在底部。 'Initialization of 'Outlook_Add_In_Tes
这个问题在这里已经有了答案: XamlParseException after deploying WPF project (10 个答案) 关闭 8 年前。 当我从应用程序中的另一个窗口显示此窗口
我正在尝试使用默认图标之一作为我的 Xaml 代码中按钮的内容。我真的不明白出了什么问题,因为图像在 UI 伪模拟器中显示时加载正常,但当我尝试部署它时,如果我进入 View ,则会抛出 System
我正在使用以下代码在 Window 或 UserControl 中定义 ImageBrush: 如果我在我的正常应用程序中使用它,效果很好。 但是对于我的测试项目,当我尝试实例化它时,我总是会收到此
此 WPF 应用以 .NET 3.5 为目标,并使用 Visual Studio 2010 的 4.0 工具构建(csc.exe 版本为 4.0.30319.1)。 我不确定我看到的这个异常是怎么回事
我有一个定义了 Style 的 ResourceDictionary,它有一个 ControlTemplate 和一个 Binding StringFormat,如下所示: 我在本地运行,一切正常,
我正在尝试使用 Graph#我的 VSPackage 项目中的库,但不幸的是有一些障碍需要克服。这是我所做的: 我将以下所有 DLL 复制到项目根目录中的文件夹/Libraries 中: GraphS
我正在使用静态资源字典,它按以下方式初始化: static ResourceDictionary resource = new ResourceDictionary() { Source =
我创建了一个绑定(bind)了一些文本框的 WPF 应用程序。我使用验证错误来检查值是否正确。验证查找数据库以查看输入的数据是否存在。 如果我输入一个假值,我的验证错误会捕获错误 whitout 问题
我的应用程序是多窗口的。如果发生 XamlParseException,整个应用程序将关闭。 我最多想做的是关闭“负责”此错误的窗口。 你知道实现这一目标的方法吗? 异常示例: System.Wind
我编写了一个可以在我的开发电脑(Window 7)上安装和运行的应用。 开发环境:安装了 .NET 4 和 .NET 3.5 的 Window 7、VS2010 WPF C# 在其他客户端计算机(XP
我正在尝试设置一个简单的 C# 应用程序,我想在其中记录多个 USB 网络摄像头并将它们的提要保存到一些文件中。我正在使用 AForge.NET,因为这似乎是此类应用程序最流行的选项。我可以使用 AF
我随机收到了这个错误,我不知道如何解决它,因为问题的原因是随机发生的。 任何人都可以指导我应该寻找什么,我认为它指向我的 XAML 代码,但我不知道我应该看什么。 System.Windows.Mar
我在几个不同的 WPF 应用程序中使用了一组非常简单的样式。我将此样式存储在一个通用项目的 Xaml 文件中,然后通过合并到 Resources 中添加在 App.xaml在每个项目中。
我一直在尝试部署我的 WPF 应用程序,我使用安装向导创建了一个安装项目。我添加的唯一项目输出是 Primary。构建此程序并安装程序后,一旦我单击桌面上的 exe,我就会弹出一个“我的程序已停止工作
我想为 Windows 应用商店应用程序创建带有附加属性的自定义文本框。我正在关注this solution 。现在它使用硬编码值作为属性值,但我想使用绑定(bind)来设置值,但它不起作用。我尝试了
我是一名优秀的程序员,十分优秀!